1 | // Part of BNC, a utility for retrieving decoding and
|
---|
2 | // converting GNSS data streams from NTRIP broadcasters.
|
---|
3 | //
|
---|
4 | // Copyright (C) 2007
|
---|
5 | // German Federal Agency for Cartography and Geodesy (BKG)
|
---|
6 | // http://www.bkg.bund.de
|
---|
7 | // Czech Technical University Prague, Department of Geodesy
|
---|
8 | // http://www.fsv.cvut.cz
|
---|
9 | //
|
---|
10 | // Email: euref-ip@bkg.bund.de
|
---|
11 | //
|
---|
12 | // This program is free software; you can redistribute it and/or
|
---|
13 | // modify it under the terms of the GNU General Public License
|
---|
14 | // as published by the Free Software Foundation, version 2.
|
---|
15 | //
|
---|
16 | // This program is distributed in the hope that it will be useful,
|
---|
17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | // GNU General Public License for more details.
|
---|
20 | //
|
---|
21 | // You should have received a copy of the GNU General Public License
|
---|
22 | // along with this program; if not, write to the Free Software
|
---|
23 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
24 |
|
---|
25 | /* -------------------------------------------------------------------------
|
---|
26 | * BKG NTRIP Client
|
---|
27 | * -------------------------------------------------------------------------
|
---|
28 | *
|
---|
29 | * Class: t_postProcessing
|
---|
30 | *
|
---|
31 | * Purpose: Precise Point Positioning in Post-Processing Mode
|
---|
32 | *
|
---|
33 | * Author: L. Mervart
|
---|
34 | *
|
---|
35 | * Created: 22-Jan-2012
|
---|
36 | *
|
---|
37 | * Changes:
|
---|
38 | *
|
---|
39 | * -----------------------------------------------------------------------*/
|
---|
40 |
|
---|
41 | #include <iostream>
|
---|
42 | #include "bncpostprocess.h"
|
---|
43 | #include "bncapp.h"
|
---|
44 | #include "bncsettings.h"
|
---|
45 | #include "pppopt.h"
|
---|
46 | #include "bncpppclient.h"
|
---|
47 | #include "rinex/rnxobsfile.h"
|
---|
48 | #include "rnxnavfile.h"
|
---|
49 | #include "corrfile.h"
|
---|
50 | #include "bncsettings.h"
|
---|
51 | #include "bncutils.h"
|
---|
52 |
|
---|
53 | using namespace std;
|
---|
54 |
|
---|
55 | // Constructor
|
---|
56 | ////////////////////////////////////////////////////////////////////////////
|
---|
57 | t_postProcessing::t_postProcessing(QObject* parent) : QThread(parent) {
|
---|
58 | _opt = new t_pppOpt();
|
---|
59 | _rnxObsFile = 0;
|
---|
60 | _rnxNavFile = 0;
|
---|
61 | _corrFile = 0;
|
---|
62 | _pppClient = 0;
|
---|
63 |
|
---|
64 | bncSettings settings;
|
---|
65 |
|
---|
66 | QString outFileName = settings.value("postOutFile").toString();
|
---|
67 | if (outFileName.isEmpty()) {
|
---|
68 | _outFile = 0;
|
---|
69 | _outStream = 0;
|
---|
70 | }
|
---|
71 | else {
|
---|
72 | expandEnvVar(outFileName);
|
---|
73 | _outFile = new QFile(outFileName);
|
---|
74 | _outFile->open(QIODevice::WriteOnly | QIODevice::Text);
|
---|
75 | _outStream = new QTextStream();
|
---|
76 | _outStream->setDevice(_outFile);
|
---|
77 | }
|
---|
78 | }
|
---|
79 |
|
---|
80 | // Destructor
|
---|
81 | ////////////////////////////////////////////////////////////////////////////
|
---|
82 | t_postProcessing::~t_postProcessing() {
|
---|
83 | delete _pppClient;
|
---|
84 | delete _rnxNavFile;
|
---|
85 | delete _rnxObsFile;
|
---|
86 | delete _corrFile;
|
---|
87 | delete _opt;
|
---|
88 | delete _outStream;
|
---|
89 | delete _outFile;
|
---|
90 | }
|
---|
91 |
|
---|
92 | // Write a Program Message
|
---|
93 | ////////////////////////////////////////////////////////////////////////////
|
---|
94 | void t_postProcessing::slotMessage(QByteArray msg, bool /* showOnScreen */) {
|
---|
95 | if (_outStream) {
|
---|
96 | *_outStream << endl << msg;
|
---|
97 | _outStream->flush();
|
---|
98 | }
|
---|
99 | else {
|
---|
100 | ((bncApp*) qApp)->slotMessage(msg, false);
|
---|
101 | }
|
---|
102 | }
|
---|
103 |
|
---|
104 | // Set Observations from RINEX File
|
---|
105 | ////////////////////////////////////////////////////////////////////////////
|
---|
106 | void t_postProcessing::setObsFromRnx(const t_rnxObsFile* rnxObsFile,
|
---|
107 | const t_rnxObsFile::t_rnxEpo* epo,
|
---|
108 | const t_rnxObsFile::t_rnxSat& rnxSat,
|
---|
109 | t_obs& obs) {
|
---|
110 |
|
---|
111 | strncpy(obs.StatID, rnxObsFile->markerName().toAscii().constData(),
|
---|
112 | sizeof(obs.StatID));
|
---|
113 |
|
---|
114 | obs.satSys = rnxSat.satSys;
|
---|
115 | obs.satNum = rnxSat.satNum;
|
---|
116 | obs.GPSWeek = epo->tt.gpsw();
|
---|
117 | obs.GPSWeeks = epo->tt.gpssec();
|
---|
118 |
|
---|
119 | for (int iType = 0; iType < rnxObsFile->nTypes(obs.satSys); iType++) {
|
---|
120 | QByteArray type = rnxObsFile->obsType(obs.satSys,iType).toAscii();
|
---|
121 | int iEntry = obs.str2entry(type.data());
|
---|
122 | obs._measdata[iEntry] = rnxSat.obs[iType];
|
---|
123 | // TOOD: handle slip flags
|
---|
124 | }
|
---|
125 | }
|
---|
126 |
|
---|
127 | //
|
---|
128 | ////////////////////////////////////////////////////////////////////////////
|
---|
129 | void t_postProcessing::run() {
|
---|
130 |
|
---|
131 | if (_pppClient) {
|
---|
132 | return;
|
---|
133 | }
|
---|
134 | else {
|
---|
135 | try {
|
---|
136 | _rnxObsFile = new t_rnxObsFile(_opt->obsFileName, t_rnxObsFile::input);
|
---|
137 | }
|
---|
138 | catch (...) {
|
---|
139 | delete _rnxObsFile; _rnxObsFile = 0;
|
---|
140 | emit finished();
|
---|
141 | deleteLater();
|
---|
142 | return;
|
---|
143 | }
|
---|
144 | _rnxNavFile = new t_rnxNavFile(_opt->navFileName, t_rnxNavFile::input);
|
---|
145 | _pppClient = new bncPPPclient("POST", _opt, false);
|
---|
146 |
|
---|
147 | if (!_opt->corrFileName.isEmpty()) {
|
---|
148 | _corrFile = new t_corrFile(_opt->corrFileName);
|
---|
149 | connect(_corrFile, SIGNAL(newCorrections(QList<QString>)),
|
---|
150 | _pppClient, SLOT(slotNewCorrections(QList<QString>)),
|
---|
151 | Qt::DirectConnection);
|
---|
152 | }
|
---|
153 |
|
---|
154 | connect(_pppClient, SIGNAL(newMessage(QByteArray,bool)),
|
---|
155 | this, SLOT(slotMessage(const QByteArray,bool)));
|
---|
156 | }
|
---|
157 |
|
---|
158 | // Read/Process Observations
|
---|
159 | // -------------------------
|
---|
160 | int nEpo = 0;
|
---|
161 | const t_rnxObsFile::t_rnxEpo* epo = 0;
|
---|
162 | while ( (epo = _rnxObsFile->nextEpoch()) != 0 ) {
|
---|
163 | ++nEpo;
|
---|
164 |
|
---|
165 | // Get Corrections
|
---|
166 | // ---------------
|
---|
167 | if (_corrFile) {
|
---|
168 | _corrFile->syncRead(epo->tt);
|
---|
169 | }
|
---|
170 |
|
---|
171 | // Get Ephemerides
|
---|
172 | // ----------------
|
---|
173 | t_eph* eph = 0;
|
---|
174 | const QMap<QString, int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0;
|
---|
175 | while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) {
|
---|
176 | if (_pppClient->putNewEph(eph) != success) {
|
---|
177 | delete eph; eph = 0;
|
---|
178 | }
|
---|
179 | }
|
---|
180 |
|
---|
181 | for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) {
|
---|
182 |
|
---|
183 | const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs];
|
---|
184 |
|
---|
185 | t_obs obs;
|
---|
186 | t_postProcessing::setObsFromRnx(_rnxObsFile, epo, rnxSat, obs);
|
---|
187 |
|
---|
188 | // Get Glonass Channel Number
|
---|
189 | // -------------------------
|
---|
190 | bool obsOK = true;
|
---|
191 | if (obs.satSys == 'R') {
|
---|
192 | QString prn = QString("%1%2").arg(obs.satSys)
|
---|
193 | .arg(obs.satNum, 2, 10, QChar('0'));
|
---|
194 | const bncEphUser::t_ephPair* ephPair = _pppClient->ephPair(prn);
|
---|
195 | if (ephPair && ephPair->last) {
|
---|
196 | obs.slotNum = ((t_ephGlo*) ephPair->last)->slotNum();
|
---|
197 | }
|
---|
198 | else {
|
---|
199 | obsOK = false;
|
---|
200 | }
|
---|
201 | }
|
---|
202 |
|
---|
203 | // Put the new Observation to the Client
|
---|
204 | // -------------------------------------
|
---|
205 | if (obsOK) {
|
---|
206 | _pppClient->putNewObs(obs);
|
---|
207 | }
|
---|
208 | }
|
---|
209 | if (nEpo % 10 == 0) {
|
---|
210 | emit progress(nEpo);
|
---|
211 | }
|
---|
212 | }
|
---|
213 |
|
---|
214 | bncApp* app = (bncApp*) qApp;
|
---|
215 | if ( app->mode() != bncApp::interactive) {
|
---|
216 | app->exit(0);
|
---|
217 | }
|
---|
218 | else {
|
---|
219 | emit finished();
|
---|
220 | deleteLater();
|
---|
221 | }
|
---|
222 | }
|
---|