source: ntrip/trunk/BNC/src/pppRun.cpp@ 11041

Last change on this file since 11041 was 11041, checked in by stuerze, 5 days ago

updates regarding RTCM-SSR

File size: 25.1 KB
Line 
1
2// Part of BNC, a utility for retrieving decoding and
3// converting GNSS data streams from NTRIP broadcasters.
4//
5// Copyright (C) 2007
6// German Federal Agency for Cartography and Geodesy (BKG)
7// http://bkg.bund.de
8// Czech Technical University Prague, Department of Geodesy
9// http://www.fsv.cvut.cz
10//
11// Email: euref-ip@bkg.bund.de
12//
13// This program is free software; you can redistribute it and/or
14// modify it under the terms of the GNU General Public License
15// as published by the Free Software Foundation, version 2.
16//
17// This program is distributed in the hope that it will be useful,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20// GNU General Public License for more details.
21//
22// You should have received a copy of the GNU General Public License
23// along with this program; if not, write to the Free Software
24// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26/* -------------------------------------------------------------------------
27 * BKG NTRIP Client
28 * -------------------------------------------------------------------------
29 *
30 * Class: t_pppRun
31 *
32 * Purpose: Single Real-Time PPP Client
33 *
34 * Author: L. Mervart
35 *
36 * Created: 29-Jul-2014
37 *
38 * Changes:
39 *
40 * -----------------------------------------------------------------------*/
41
42
43#include <iostream>
44#include <iomanip>
45#include <sstream>
46#include <string.h>
47#include <map>
48
49#include "pppRun.h"
50#include "pppThread.h"
51#include "bnccore.h"
52#include "bncephuser.h"
53#include "bncsettings.h"
54#include "bncoutf.h"
55#include "bncsinextro.h"
56#include "rinex/rnxobsfile.h"
57#include "rinex/rnxnavfile.h"
58#include "rinex/corrfile.h"
59#include "combination/bnccomb.h"
60
61using namespace BNC_PPP;
62using namespace std;
63
64// Constructor
65////////////////////////////////////////////////////////////////////////////
66t_pppRun::t_pppRun(const t_pppOptions* opt) {
67
68 _opt = opt;
69
70 connect(this, SIGNAL(newMessage(QByteArray,bool)),
71 BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
72
73 connect(this, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)),
74 BNC_CORE, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)));
75
76 connect(this, SIGNAL(newNMEAstr(QByteArray, QByteArray)),
77 BNC_CORE, SIGNAL(newNMEAstr(QByteArray, QByteArray)));
78
79 _pppClient = new t_pppClient(_opt);
80
81 bncSettings settings;
82
83 if (_opt->_realTime) {
84 Qt::ConnectionType conType = Qt::AutoConnection;
85 if (BNC_CORE->mode() == t_bncCore::batchPostProcessing) {
86 conType = Qt::BlockingQueuedConnection;
87 }
88
89 connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_satObs>)),
90 this, SLOT(slotNewObs(QByteArray, QList<t_satObs>)),conType);
91
92 connect(BNC_CORE, SIGNAL(newGPSEph(t_ephGPS)),
93 this, SLOT(slotNewGPSEph(t_ephGPS)),conType);
94
95 connect(BNC_CORE, SIGNAL(newGlonassEph(t_ephGlo)),
96 this, SLOT(slotNewGlonassEph(t_ephGlo)),conType);
97
98 connect(BNC_CORE, SIGNAL(newGalileoEph(t_ephGal)),
99 this, SLOT(slotNewGalileoEph(t_ephGal)),conType);
100
101 connect(BNC_CORE, SIGNAL(newBDSEph(t_ephBDS)),
102 this, SLOT(slotNewBDSEph(t_ephBDS)),conType);
103
104 connect(BNC_CORE, SIGNAL(newTec(t_vTec)),
105 this, SLOT(slotNewTec(t_vTec)),conType);
106
107 connect(BNC_CORE, SIGNAL(newMetaData(t_metaData)),
108 this, SLOT(slotNewMetaData(t_metaData)),conType);
109
110 connect(BNC_CORE, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
111 this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)),conType);
112
113 connect(BNC_CORE, SIGNAL(newClkCorrections(QList<t_clkCorr>)),
114 this, SLOT(slotNewClkCorrections(QList<t_clkCorr>)),conType);
115
116 connect(BNC_CORE, SIGNAL(newCodeBiases(QList<t_satCodeBias>)),
117 this, SLOT(slotNewCodeBiases(QList<t_satCodeBias>)),conType);
118
119 connect(BNC_CORE, SIGNAL(newPhaseBiases(QList<t_satPhaseBias>)),
120 this, SLOT(slotNewPhaseBiases(QList<t_satPhaseBias>)),conType);
121
122 connect(BNC_CORE, SIGNAL(newSatAntennas(QList<t_satAntenna>)),
123 this, SLOT(slotNewSatAntennas(QList<t_satAntenna>)),conType);
124
125 connect(BNC_CMB, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
126 this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)),conType);
127
128 connect(BNC_CMB, SIGNAL(newClkCorrections(QList<t_clkCorr>)),
129 this, SLOT(slotNewClkCorrections(QList<t_clkCorr>)),conType);
130
131 connect(BNC_CMB, SIGNAL(newCodeBiases(QList<t_satCodeBias>)),
132 this, SLOT(slotNewCodeBiases(QList<t_satCodeBias>)),conType);
133
134 connect(BNC_CORE, SIGNAL(providerIDChanged(QString)),
135 this, SLOT(slotProviderIDChanged(QString)));
136 }
137 else {
138 _rnxObsFile = 0;
139 _rnxNavFile = 0;
140 _corrFile = 0;
141 _biasFile = 0;
142 _ionoFile = 0;
143 _speed = settings.value("PPP/mapSpeedSlider").toInt();
144 connect(this, SIGNAL(progressRnxPPP(int)), BNC_CORE, SIGNAL(progressRnxPPP(int)));
145 connect(this, SIGNAL(finishedRnxPPP()), BNC_CORE, SIGNAL(finishedRnxPPP()));
146 connect(BNC_CORE, SIGNAL(mapSpeedSliderChanged(int)),
147 this, SLOT(slotSetSpeed(int)));
148 connect(BNC_CORE, SIGNAL(stopRinexPPP()), this, SLOT(slotSetStopFlag()));
149 }
150
151 _stopFlag = false;
152
153 QString roverName(_opt->_roverName.c_str());
154 QString country;
155 QString monNum = "0";
156 QString recNum = "0";
157 if (roverName.length() >= 9) {
158 monNum = QChar(roverName[4]);
159 recNum = QChar(roverName[5]);
160 }
161 QString intr = "1 day";
162 int sampl = 0;
163 QString distStr;
164 int num = 0;
165 int statIDlength = roverName.size() -1;
166 QString ID4 = roverName.left(4);
167 QString ID9 = roverName.left(9);
168 ID4 = ID4.toUpper();
169 ID4 = ID9.toUpper();
170 QListIterator<QString> it(settings.value("mountPoints").toStringList());
171 while (it.hasNext()) {
172 QString mp = it.next();
173 if (mp.indexOf(roverName.left(statIDlength)) != -1) {
174 ++num;
175 }
176 QStringList hlp = mp.split(" ");
177 if (hlp.size() < 7)
178 continue;
179 if (hlp.join(" ").indexOf(roverName, 0) != -1) {
180 country = hlp[2];
181 }
182 }
183
184 if (num > 1) {
185 distStr = "." + roverName.right(1);
186 }
187
188 if (ID9.size() < 9) {
189 ID9 = ID4
190 + QString("%1").arg(monNum, 1, 10)
191 + QString("%1").arg(recNum, 1, 10)
192 + country;
193 }
194 QString logFileSkl = settings.value("PPP/logPath").toString();
195 int l = logFileSkl.length();
196 if (logFileSkl.isEmpty()) {
197 _logFile = 0;
198 }
199 else {
200 if (l && logFileSkl[l-1] != QDir::separator() ) {
201 logFileSkl += QDir::separator();
202 }
203
204 logFileSkl = logFileSkl + ID9 + "${V3PROD}" + distStr + ".ppp";
205
206 _logFile = new bncoutf(logFileSkl, intr, sampl);
207 }
208
209 QString nmeaFileSkl = settings.value("PPP/nmeaPath").toString();
210 l = nmeaFileSkl.length();
211 if (nmeaFileSkl.isEmpty()) {
212 _nmeaFile = 0;
213 }
214 else {
215 if (l > 0 && nmeaFileSkl[l-1] != QDir::separator() ) {
216 nmeaFileSkl += QDir::separator();
217 }
218 nmeaFileSkl = nmeaFileSkl + ID9 + "${V3PROD}" + distStr + ".nmea";
219
220 _nmeaFile = new bncoutf(nmeaFileSkl, intr, sampl);
221 }
222 QString snxtroFileSkl = settings.value("PPP/snxtroPath").toString();
223 l = snxtroFileSkl.length();
224 if (snxtroFileSkl.isEmpty()) {
225 _snxtroFile = 0;
226 }
227 else {
228 if (l > 0 && snxtroFileSkl[l-1] != QDir::separator() ) {
229 snxtroFileSkl += QDir::separator();
230 }
231 snxtroFileSkl = snxtroFileSkl + ID9 + '_' + "${V3PROD}" + distStr + ".TRO";
232 sampl = settings.value("PPP/snxtroSampl").toString().split("sec").first().toInt();
233 intr = settings.value("PPP/snxtroIntr").toString();
234 _snxtroFile = new bncSinexTro(_opt, snxtroFileSkl, intr, sampl);
235 }
236}
237
238// Destructor
239////////////////////////////////////////////////////////////////////////////
240t_pppRun::~t_pppRun() {
241 delete _logFile;
242 delete _nmeaFile;
243 delete _snxtroFile;
244 while (!_epoData.empty()) {
245 delete _epoData.front();
246 _epoData.pop_front();
247 }
248}
249
250//
251////////////////////////////////////////////////////////////////////////////
252void t_pppRun::slotNewGPSEph(t_ephGPS eph) {
253 QMutexLocker locker(&_mutex);
254 _pppClient->putEphemeris(&eph);
255}
256
257//
258////////////////////////////////////////////////////////////////////////////
259void t_pppRun::slotNewGlonassEph(t_ephGlo eph) {
260 QMutexLocker locker(&_mutex);
261 _pppClient->putEphemeris(&eph);
262}
263
264//
265////////////////////////////////////////////////////////////////////////////
266void t_pppRun::slotNewGalileoEph(t_ephGal eph) {
267 QMutexLocker locker(&_mutex);
268 _pppClient->putEphemeris(&eph);
269}
270
271//
272////////////////////////////////////////////////////////////////////////////
273void t_pppRun::slotNewBDSEph(t_ephBDS eph) {
274 QMutexLocker locker(&_mutex);
275 _pppClient->putEphemeris(&eph);
276}
277
278//
279////////////////////////////////////////////////////////////////////////////
280void t_pppRun::slotNewObs(QByteArray staID, QList<t_satObs> obsList) {
281 QMutexLocker locker(&_mutex);
282
283 //// beg test
284 // if (obsList.size() > 0) {
285 // const double sampling = 5.0;
286 // const bncTime& tt = obsList[0]._time;
287 // double mod = remainder(tt.gpssec(), sampling);
288 // if (fabs(mod) > 0.05) {
289 // return;
290 // }
291 // }
292 //// end test
293
294 if (string(staID.data()) != _opt->_roverName) {
295 return;
296 }
297/*
298 int currentWeek = 0;
299 double currentSec = 0.0;
300 currentGPSWeeks(currentWeek, currentSec);
301 bncTime currentTime(currentWeek, currentSec);
302*/
303 // Loop over all observations (possible different epochs)
304 // -----------------------------------------------------
305 QListIterator<t_satObs> it(obsList);
306 while (it.hasNext()) {
307 const t_satObs& oldObs = it.next();
308 t_satObs* newObs = new t_satObs(oldObs);
309
310 /* Check regarding current time
311 // ----------------------------
312 if (OPT->_realTime && BNC_CORE->mode() != t_bncCore::batchPostProcessing ) {
313 if ((newObs->_time >= currentTime) || // future time stamp
314 (currentTime - newObs->_time) > 60.0) { // very old data sets
315 delete newObs;
316 continue;
317 }
318 }
319 */
320 // Find the corresponding data epoch or create a new one
321 // -----------------------------------------------------
322 t_epoData* epoch = 0;
323 deque<t_epoData*>::const_iterator it;
324 for (it = _epoData.begin(); it != _epoData.end(); it++) {
325 if (newObs->_time == (*it)->_time) {
326 epoch = *it;
327 break;
328 }
329 }
330 if (epoch == 0) {
331 if (_epoData.empty() || newObs->_time > _epoData.back()->_time) {
332 epoch = new t_epoData;
333 epoch->_time = newObs->_time;
334 _epoData.push_back(epoch);
335 }
336 }
337
338 // Put data into the epoch
339 // -----------------------
340 if (epoch != 0) {
341 epoch->_satObs.push_back(newObs);
342 }
343 else {
344 delete newObs;
345 }
346 }
347
348 // Make sure the buffer does not grow beyond any limit
349 // ---------------------------------------------------
350 const unsigned MAX_EPODATA_SIZE = 120;
351 if (_epoData.size() > MAX_EPODATA_SIZE) {
352 delete _epoData.front();
353 _epoData.pop_front();
354 }
355
356 // Process the oldest epochs
357 // ------------------------
358 while (_epoData.size()) {
359
360 const vector<t_satObs*>& satObs = _epoData.front()->_satObs;
361
362 // No corrections yet, skip the epoch
363 // ----------------------------------
364 if (_opt->_corrWaitTime && !_lastClkCorrTime.valid()) {
365 return;
366 }
367
368 // Process the front epoch
369 // -----------------------
370 if (_opt->_corrWaitTime == 0 ||
371 (_epoData.front()->_time - _lastClkCorrTime) < _opt->_corrWaitTime) {
372
373 if (_opt->_corrWaitTime != 0 &&
374 (fabs(_epoData.front()->_time - _lastClkCorrTime) > 60.0)) {
375 delete _epoData.front();
376 _epoData.pop_front();
377 continue;
378 }
379
380 t_output output;
381 _pppClient->processEpoch(satObs, &output);
382
383 if (!output._error) {
384 QVector<double> xx(6);
385 xx.data()[0] = output._xyzRover[0];
386 xx.data()[1] = output._xyzRover[1];
387 xx.data()[2] = output._xyzRover[2];
388 xx.data()[3] = output._neu[0];
389 xx.data()[4] = output._neu[1];
390 xx.data()[5] = output._neu[2];
391 emit newPosition(staID, output._epoTime, xx);
392 }
393
394 delete _epoData.front();
395 _epoData.pop_front();
396
397 ostringstream log;
398 if (output._error) {
399 log << output._log;
400 }
401 else {
402 log.setf(ios::fixed);
403 log << string(output._epoTime) << ' ' << staID.data()
404 << " X = " << setprecision(4) << output._xyzRover[0]
405 << " Y = " << setprecision(4) << output._xyzRover[1]
406 << " Z = " << setprecision(4) << output._xyzRover[2]
407 << " NEU: " << showpos << setw(8) << setprecision(4) << output._neu[0]
408 << " " << showpos << setw(8) << setprecision(4) << output._neu[1]
409 << " " << showpos << setw(8) << setprecision(4) << output._neu[2]
410 << " TRP: " << showpos << setw(8) << setprecision(4) << output._trp0
411 << " " << showpos << setw(8) << setprecision(4) << output._trp;
412 if (output._fixRatio > 0.0) {
413 log << " fix " << int(100*output._fixRatio) << " %";
414 }
415 else {
416 log << " flt ";
417 }
418
419 }
420
421 if (_logFile && output._epoTime.valid()) {
422 _logFile->write(output._epoTime.gpsw(), output._epoTime.gpssec(),
423 QString(output._log.c_str()));
424 }
425
426 if (!output._error) {
427 QString rmcStr = nmeaString('R', output);
428 QString ggaStr = nmeaString('G', output);
429 if (_nmeaFile) {
430 _nmeaFile->write(output._epoTime.gpsw(), output._epoTime.gpssec(), rmcStr);
431 _nmeaFile->write(output._epoTime.gpsw(), output._epoTime.gpssec(), ggaStr);
432 }
433 emit newNMEAstr(staID, rmcStr.toLatin1());
434 emit newNMEAstr(staID, ggaStr.toLatin1());
435 if (_snxtroFile && output._epoTime.valid()) {
436 _snxtroFile->write(staID, int(output._epoTime.gpsw()), output._epoTime.gpssec(),
437 output._trp0 + output._trp, output._trpStdev);
438 }
439 }
440 emit newMessage(QByteArray(log.str().c_str()), true);
441 }
442 else {
443 return;
444 }
445 }
446}
447
448//
449////////////////////////////////////////////////////////////////////////////
450void t_pppRun::slotNewTec(t_vTec vTec) {
451 if (vTec._layers.size() == 0) {
452 return;
453 }
454
455 if (_opt->_realTime) {
456 if (_opt->_ionoMount.empty() && _opt->_corrMount.empty()) {
457 return;
458 }
459 if (!_opt->_ionoMount.empty()) {
460 if (_opt->_ionoMount != vTec._staID) {
461 return;
462 }
463 }
464 else if (!_opt->_corrMount.empty()) {
465 if (_opt->_corrMount != vTec._staID) {
466 return;
467 }
468 }
469 }
470 _pppClient->putTec(&vTec);
471}
472
473//
474////////////////////////////////////////////////////////////////////////////
475void t_pppRun::slotNewMetaData(t_metaData metaData) {
476 if (metaData._entries.size() == 0) {
477 return;
478 }
479
480 if (_opt->_realTime) {
481 if (_opt->_corrMount.empty() || _opt->_corrMount != metaData._staID) {
482 return;
483 }
484 }
485 _pppClient->putMetaData(&metaData);
486}
487
488//
489////////////////////////////////////////////////////////////////////////////
490void t_pppRun::slotNewOrbCorrections(QList<t_orbCorr> orbCorr) {
491 if (orbCorr.size() == 0) {
492 return;
493 }
494
495 if (_opt->_realTime) {
496 if (_opt->_corrMount.empty() || _opt->_corrMount != orbCorr[0]._staID) {
497 return;
498 }
499 }
500 vector<t_orbCorr*> corrections;
501 for (int ii = 0; ii < orbCorr.size(); ii++) {
502 corrections.push_back(new t_orbCorr(orbCorr[ii]));
503 }
504
505 _pppClient->putOrbCorrections(corrections);
506
507 for (unsigned ii = 0; ii < corrections.size(); ii++) {
508 delete corrections[ii];
509 }
510}
511
512//
513////////////////////////////////////////////////////////////////////////////
514void t_pppRun::slotNewClkCorrections(QList<t_clkCorr> clkCorr) {
515 if (clkCorr.size() == 0) {
516 return;
517 }
518
519 if (_opt->_realTime) {
520 if (_opt->_corrMount.empty() || _opt->_corrMount != clkCorr[0]._staID) {
521 return;
522 }
523 }
524 vector<t_clkCorr*> corrections;
525 for (int ii = 0; ii < clkCorr.size(); ii++) {
526 corrections.push_back(new t_clkCorr(clkCorr[ii]));
527 _lastClkCorrTime = clkCorr[ii]._time;
528 }
529 _pppClient->putClkCorrections(corrections);
530
531 for (unsigned ii = 0; ii < corrections.size(); ii++) {
532 delete corrections[ii];
533 }
534}
535
536//
537////////////////////////////////////////////////////////////////////////////
538void t_pppRun::slotNewCodeBiases(QList<t_satCodeBias> codeBiases) {
539 if (codeBiases.size() == 0) {
540 return;
541 }
542
543 if (_opt->_realTime) {
544 if (_opt->_corrMount.empty() && _opt->_biasMount.empty()) {
545 return;
546 }
547 if (!_opt->_biasMount.empty()) {
548 if (_opt->_biasMount != codeBiases[0]._staID) {
549 return;
550 }
551 }
552 else if (!_opt->_corrMount.empty()) {
553 if (_opt->_corrMount != codeBiases[0]._staID) {
554 return;
555 }
556 }
557 }
558 vector<t_satCodeBias*> biases;
559 for (int ii = 0; ii < codeBiases.size(); ii++) {
560 biases.push_back(new t_satCodeBias(codeBiases[ii]));
561 }
562
563 _pppClient->putCodeBiases(biases);
564
565 for (unsigned ii = 0; ii < biases.size(); ii++) {
566 delete biases[ii];
567 }
568}
569
570//
571////////////////////////////////////////////////////////////////////////////
572void t_pppRun::slotNewSatAntennas(QList<t_satAntenna> satAntennas) {
573 if (satAntennas.size() == 0) {
574 return;
575 }
576
577 if (_opt->_realTime) {
578 if (_opt->_corrMount.empty() && _opt->_biasMount.empty()) {
579 return;
580 }
581 if (!_opt->_biasMount.empty()) {
582 if (_opt->_biasMount != satAntennas[0]._staID) {
583 return;
584 }
585 }
586 else if (!_opt->_corrMount.empty()) {
587 if (_opt->_corrMount != satAntennas[0]._staID) {
588 return;
589 }
590 }
591 }
592 vector<t_satAntenna*> antennas;
593 for (int ii = 0; ii < satAntennas.size(); ii++) {
594 antennas.push_back(new t_satAntenna(satAntennas[ii]));
595 }
596
597 _pppClient->putSatAntennas(antennas);
598
599 for (unsigned ii = 0; ii < antennas.size(); ii++) {
600 delete antennas[ii];
601 }
602}
603
604//
605////////////////////////////////////////////////////////////////////////////
606void t_pppRun::slotNewPhaseBiases(QList<t_satPhaseBias> phaseBiases) {
607 if (phaseBiases.size() == 0) {
608 return;
609 }
610
611 if (_opt->_realTime) {
612 if (_opt->_corrMount.empty() && _opt->_biasMount.empty()) {
613 return;
614 }
615 if (!_opt->_biasMount.empty()) {
616 if (_opt->_biasMount != phaseBiases[0]._staID) {
617 return;
618 }
619 }
620 else if (!_opt->_corrMount.empty()) {
621 if (_opt->_corrMount != phaseBiases[0]._staID) {
622 return;
623 }
624 }
625 }
626 vector<t_satPhaseBias*> biases;
627 for (int ii = 0; ii < phaseBiases.size(); ii++) {
628 biases.push_back(new t_satPhaseBias(phaseBiases[ii]));
629 }
630
631 _pppClient->putPhaseBiases(biases);
632
633 for (unsigned ii = 0; ii < biases.size(); ii++) {
634 delete biases[ii];
635 }
636}
637
638//
639////////////////////////////////////////////////////////////////////////////
640void t_pppRun::processFiles() {
641
642 try {
643 _rnxObsFile = new t_rnxObsFile(QString(_opt->_rinexObs.c_str()), t_rnxObsFile::input);
644 }
645 catch (...) {
646 delete _rnxObsFile; _rnxObsFile = 0;
647 emit finishedRnxPPP();
648 return;
649 }
650
651 try {
652 _rnxNavFile = new t_rnxNavFile(QString(_opt->_rinexNav.c_str()), t_rnxNavFile::input);
653 }
654 catch (...) {
655 delete _rnxNavFile; _rnxNavFile = 0;
656 emit finishedRnxPPP();
657 return;
658 }
659
660 if (!_opt->_corrFile.empty()) {
661 _corrFile = new t_corrFile(QString(_opt->_corrFile.c_str()));
662 connect(_corrFile, SIGNAL(newOrbCorrections(QList<t_orbCorr>)), this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)));
663 connect(_corrFile, SIGNAL(newClkCorrections(QList<t_clkCorr>)), this, SLOT(slotNewClkCorrections(QList<t_clkCorr>)));
664 connect(_corrFile, SIGNAL(newMetaData(t_metaData)), this, SLOT(slotNewMetaData(t_metaData)));
665 if (_opt->_biasFile.empty()) {
666 connect(_corrFile, SIGNAL(newCodeBiases(QList<t_satCodeBias>)), this, SLOT(slotNewCodeBiases(QList<t_satCodeBias>)));
667 connect(_corrFile, SIGNAL(newPhaseBiases(QList<t_satPhaseBias>)), this, SLOT(slotNewPhaseBiases(QList<t_satPhaseBias>)));
668 }
669 connect(_corrFile, SIGNAL(newSatAntennas(QList<t_satAntenna>)), this, SLOT(slotNewSatAntennas(QList<t_satAntenna>)));
670 if (_opt->_ionoFile.empty()) {
671 connect(_corrFile, SIGNAL(newTec(t_vTec)), this, SLOT(slotNewTec(t_vTec)));
672 }
673 }
674
675 if (!_opt->_biasFile.empty()) {
676 _biasFile = new t_corrFile(QString(_opt->_biasFile.c_str()));
677 connect(_biasFile, SIGNAL(newCodeBiases(QList<t_satCodeBias>)), this, SLOT(slotNewCodeBiases(QList<t_satCodeBias>)));
678 connect(_biasFile, SIGNAL(newPhaseBiases(QList<t_satPhaseBias>)), this, SLOT(slotNewPhaseBiases(QList<t_satPhaseBias>)));
679 }
680
681 if (!_opt->_ionoFile.empty()) {
682 _ionoFile = new t_corrFile(QString(_opt->_corrFile.c_str()));
683 connect(_ionoFile, SIGNAL(newTec(t_vTec)), this, SLOT(slotNewTec(t_vTec)));
684 }
685
686 // Read/Process Observations
687 // -------------------------
688 int nEpo = 0;
689 const t_rnxObsFile::t_rnxEpo* epo = 0;
690 while ( !_stopFlag && (epo = _rnxObsFile->nextEpoch()) != 0 ) {
691 ++nEpo;
692
693 if (_speed < 100) {
694 double sleepTime = 2.0 / _speed;
695 t_pppThread::msleep(int(sleepTime*1.e3));
696 }
697
698 // Get Corrections
699 // ---------------
700 for (t_corrFile* file : {_corrFile, _biasFile, _ionoFile}) {
701 if (file) {
702 try {
703 file->syncRead(epo->tt);
704 }
705 catch (const char* msg) {
706 emit newMessage(QByteArray(msg), true);
707 break;
708 }
709 catch (const string& msg) {
710 emit newMessage(QByteArray(msg.c_str()), true);
711 break;
712 }
713 catch (...) {
714 emit newMessage("unknown exceptions in file " + file->name().toLatin1(), true);
715 break;
716 }
717 }
718 }
719
720 // Get Ephemerides
721 // ----------------
722 t_eph* eph = 0;
723 const QMap<QString, unsigned int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0;
724 while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) {
725 _pppClient->putEphemeris(eph);
726 delete eph; eph = 0;
727 }
728
729 // Create list of observations and start epoch processing
730 // ------------------------------------------------------
731 QList<t_satObs> obsList;
732 for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) {
733 const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs];
734
735 t_satObs obs;
736 t_rnxObsFile::setObsFromRnx(_rnxObsFile, epo, rnxSat, obs);
737 obsList << obs;
738 }
739 slotNewObs(QByteArray(_opt->_roverName.c_str()), obsList);
740
741
742 if (nEpo % 10 == 0) {
743 emit progressRnxPPP(nEpo);
744 }
745
746 QCoreApplication::processEvents();
747 }
748
749 emit finishedRnxPPP();
750
751 if (BNC_CORE->mode() != t_bncCore::interactive) {
752 qApp->exit(6);
753 }
754 else {
755 BNC_CORE->stopPPP();
756 }
757}
758
759//
760////////////////////////////////////////////////////////////////////////////
761void t_pppRun::slotSetSpeed(int speed) {
762 QMutexLocker locker(&_mutex);
763 _speed = speed;
764}
765
766//
767////////////////////////////////////////////////////////////////////////////
768void t_pppRun::slotSetStopFlag() {
769 QMutexLocker locker(&_mutex);
770 _stopFlag = true;
771}
772
773//
774////////////////////////////////////////////////////////////////////////////
775QString t_pppRun::nmeaString(char strType, const t_output& output) {
776
777 double ell[3];
778 xyz2ell(output._xyzRover, ell);
779 double phiDeg = ell[0] * 180 / M_PI;
780 double lamDeg = ell[1] * 180 / M_PI;
781
782 unsigned year, month, day;
783 output._epoTime.civil_date(year, month, day);
784 double gps_utc = gnumleap(year, month, day);
785
786 char phiCh = 'N';
787 if (phiDeg < 0) {
788 phiDeg = -phiDeg;
789 phiCh = 'S';
790 }
791 char lamCh = 'E';
792 if (lamDeg < 0) {
793 lamDeg = -lamDeg;
794 lamCh = 'W';
795 }
796
797 ostringstream out;
798 out.setf(ios::fixed);
799
800 if (strType == 'R') {
801 string datestr = (output._epoTime - gps_utc).datestr(0); // yyyymmdd
802 out << "GPRMC,"
803 << (output._epoTime - gps_utc).timestr(3,0) << ",A,"
804 << setw(2) << setfill('0') << int(phiDeg)
805 << setw(7) << setprecision(4) << setfill('0') << fmod(60*phiDeg,60) << ',' << phiCh << ','
806 << setw(3) << setfill('0') << int(lamDeg)
807 << setw(7) << setprecision(4) << setfill('0') << fmod(60*lamDeg,60) << ',' << lamCh << ",,,"
808 << datestr[6] << datestr[7] << datestr[4] << datestr[5] << datestr[2] << datestr[3] << ",,";
809 }
810 else if (strType == 'G') {
811 out << "GPGGA,"
812 << (output._epoTime - gps_utc).timestr(2,0) << ','
813 << setw(2) << setfill('0') << int(phiDeg)
814 << setw(10) << setprecision(7) << setfill('0')
815 << fmod(60*phiDeg,60) << ',' << phiCh << ','
816 << setw(3) << setfill('0') << int(lamDeg)
817 << setw(10) << setprecision(7) << setfill('0')
818 << fmod(60*lamDeg,60) << ',' << lamCh
819 << ",1," << setw(2) << setfill('0') << output._numSat << ','
820 << setw(3) << setprecision(1) << output._hDop << ','
821 << setprecision(3) << ell[2] << ",M,0.0,M,,";
822 }
823 else {
824 return "";
825 }
826
827 QString nmStr(out.str().c_str());
828 unsigned char XOR = 0;
829 for (int ii = 0; ii < nmStr.length(); ii++) {
830 XOR ^= (unsigned char) nmStr[ii].toLatin1();
831 }
832
833 return '$' + nmStr + QString("*%1").arg(XOR, 2, 16, QLatin1Char('0')) + "\n";
834}
835
836//
837////////////////////////////////////////////////////////////////////////////
838void t_pppRun::slotProviderIDChanged(QString mountPoint) {
839 QMutexLocker locker(&_mutex);
840
841 if (mountPoint.toStdString() !=_opt->_corrMount) {
842 return;
843 }
844
845 QString msg = "pppRun " + QString(_opt->_roverName.c_str()) + ": SSR Provider or Service changed: " + mountPoint;
846 emit newMessage(msg.toLatin1(), true);
847
848 _pppClient->reset();
849
850 while (!_epoData.empty()) {
851 delete _epoData.front();
852 _epoData.pop_front();
853 }
854}
Note: See TracBrowser for help on using the repository browser.