source: ntrip/branches/BNC_2.12/src/pppRun.cpp@ 7970

Last change on this file since 7970 was 7970, checked in by stuerze, 8 years ago

minor changes

File size: 20.7 KB
RevLine 
[5860]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://www.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 *
[5883]30 * Class: t_pppRun
[5860]31 *
32 * Purpose: Single Real-Time PPP Client
33 *
34 * Author: L. Mervart
35 *
36 * Created: 29-Jul-2014
37 *
[7278]38 * Changes:
[5860]39 *
40 * -----------------------------------------------------------------------*/
41
42
43#include <iostream>
44#include <iomanip>
[5980]45#include <sstream>
[5860]46#include <string.h>
47#include <map>
48
[5883]49#include "pppRun.h"
[5891]50#include "pppThread.h"
[5860]51#include "bnccore.h"
52#include "bncephuser.h"
[5953]53#include "bncsettings.h"
[5984]54#include "bncoutf.h"
[6653]55#include "bncsinextro.h"
[5883]56#include "rinex/rnxobsfile.h"
57#include "rinex/rnxnavfile.h"
58#include "rinex/corrfile.h"
[7299]59#include "combination/bnccomb.h"
[5860]60
61using namespace BNC_PPP;
62using namespace std;
63
64// Constructor
65////////////////////////////////////////////////////////////////////////////
[5883]66t_pppRun::t_pppRun(const t_pppOptions* opt) {
67
[5860]68 _opt = opt;
[5883]69
[7278]70 connect(this, SIGNAL(newMessage(QByteArray,bool)),
[5860]71 BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
[5883]72
[5991]73 connect(this, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)),
[5954]74 BNC_CORE, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)));
[5949]75
[5991]76 connect(this, SIGNAL(newNMEAstr(QByteArray, QByteArray)),
77 BNC_CORE, SIGNAL(newNMEAstr(QByteArray, QByteArray)));
78
[5883]79 _pppClient = new t_pppClient(_opt);
80
[5984]81 bncSettings settings;
82
[5860]83 if (_opt->_realTime) {
[5945]84 Qt::ConnectionType conType = Qt::AutoConnection;
85 if (BNC_CORE->mode() == t_bncCore::batchPostProcessing) {
86 conType = Qt::BlockingQueuedConnection;
87 }
88
[6137]89 connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_satObs>)),
90 this, SLOT(slotNewObs(QByteArray, QList<t_satObs>)),conType);
[5860]91
[6433]92 connect(BNC_CORE, SIGNAL(newGPSEph(t_ephGPS)),
93 this, SLOT(slotNewGPSEph(t_ephGPS)),conType);
[7278]94
[6433]95 connect(BNC_CORE, SIGNAL(newGlonassEph(t_ephGlo)),
96 this, SLOT(slotNewGlonassEph(t_ephGlo)),conType);
[7278]97
[6433]98 connect(BNC_CORE, SIGNAL(newGalileoEph(t_ephGal)),
99 this, SLOT(slotNewGalileoEph(t_ephGal)),conType);
[5860]100
[6966]101 connect(BNC_CORE, SIGNAL(newBDSEph(t_ephBDS)),
102 this, SLOT(slotNewBDSEph(t_ephBDS)),conType);
103
[7231]104 connect(BNC_CORE, SIGNAL(newTec(t_vTec)),
105 this, SLOT(slotNewTec(t_vTec)),conType);
106
[6141]107 connect(BNC_CORE, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
108 this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)),conType);
109
110 connect(BNC_CORE, SIGNAL(newClkCorrections(QList<t_clkCorr>)),
111 this, SLOT(slotNewClkCorrections(QList<t_clkCorr>)),conType);
[6478]112
113 connect(BNC_CORE, SIGNAL(newCodeBiases(QList<t_satCodeBias>)),
114 this, SLOT(slotNewCodeBiases(QList<t_satCodeBias>)),conType);
[7288]115
116 connect(BNC_CORE, SIGNAL(newPhaseBiases(QList<t_satPhaseBias>)),
117 this, SLOT(slotNewPhaseBiases(QList<t_satPhaseBias>)),conType);
[7299]118
119 connect(BNC_CMB, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
120 this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)),conType);
121
122 connect(BNC_CMB, SIGNAL(newClkCorrections(QList<t_clkCorr>)),
123 this, SLOT(slotNewClkCorrections(QList<t_clkCorr>)),conType);
[7968]124
125 connect(BNC_CORE, SIGNAL(providerIDChanged(QString)),
126 this, SLOT(slotProviderIDChanged(QString)));
[5860]127 }
128 else {
[5889]129 _rnxObsFile = 0;
130 _rnxNavFile = 0;
131 _corrFile = 0;
[5953]132 _speed = settings.value("PPP/mapSpeedSlider").toInt();
[5941]133 connect(this, SIGNAL(progressRnxPPP(int)), BNC_CORE, SIGNAL(progressRnxPPP(int)));
134 connect(this, SIGNAL(finishedRnxPPP()), BNC_CORE, SIGNAL(finishedRnxPPP()));
[7278]135 connect(BNC_CORE, SIGNAL(mapSpeedSliderChanged(int)),
[5950]136 this, SLOT(slotSetSpeed(int)));
[5973]137 connect(BNC_CORE, SIGNAL(stopRinexPPP()), this, SLOT(slotSetStopFlag()));
[5860]138 }
[7278]139
[5973]140 _stopFlag = false;
[5984]141
[7506]142 QString roverName(_opt->_roverName.c_str()), fullRoverName("");
143 QString country;
144 QString monNum = "0";
145 QString recNum = "0";
146 QString intr = "1 day";
147 int sampl = 0;
148 QListIterator<QString> it(settings.value("mountPoints").toStringList());
149 while (it.hasNext()) {
150 QStringList hlp = it.next().split(" ");
151 if (hlp.size() < 7)
152 continue;
153 if (hlp.join(" ").indexOf(roverName, 0) != -1) {
154 country = hlp[2];
155 }
156 }
157 fullRoverName = roverName.left(4) +
158 QString("%1").arg(monNum, 1, 10) +
159 QString("%1").arg(recNum, 1, 10) +
160 country;
[5988]161
[7506]162 bool v3filenames = settings.value("PPP/v3filenames").toBool();
163 QString logFileSkl = settings.value("PPP/logPath").toString();
[7520]164 int l = logFileSkl.length();
[5988]165 if (logFileSkl.isEmpty()) {
166 _logFile = 0;
[5987]167 }
168 else {
[7520]169 if (l && logFileSkl[l-1] != QDir::separator() ) {
170 logFileSkl += QDir::separator();
171 }
[7506]172 if (v3filenames) {
173 logFileSkl = logFileSkl + fullRoverName + "${V3}" + ".ppp";
[5988]174 }
175 else {
[7506]176 logFileSkl = logFileSkl + roverName.left(4) + "${GPSWD}" + ".ppp";
[5988]177 }
[7506]178 _logFile = new bncoutf(logFileSkl, intr, sampl);
[5987]179 }
[5988]180
[7506]181 QString nmeaFileSkl = settings.value("PPP/nmeaPath").toString();
[7520]182 l = nmeaFileSkl.length();
[5988]183 if (nmeaFileSkl.isEmpty()) {
184 _nmeaFile = 0;
185 }
186 else {
[7520]187 if (l > 0 && nmeaFileSkl[l-1] != QDir::separator() ) {
188 nmeaFileSkl += QDir::separator();
189 }
[7506]190 if (v3filenames) {
191 nmeaFileSkl = nmeaFileSkl + fullRoverName + "${V3}" + ".nmea";
[5988]192 }
193 else {
[7506]194 nmeaFileSkl = nmeaFileSkl + roverName.left(4) + "${GPSWD}" + ".nmea";
[5988]195 }
[7506]196 _nmeaFile = new bncoutf(nmeaFileSkl, intr, sampl);
[5988]197 }
[6608]198
[7506]199 QString snxtroFileSkl = settings.value("PPP/snxtroPath").toString();
[7520]200 l = snxtroFileSkl.length();
[6608]201 if (snxtroFileSkl.isEmpty()) {
202 _snxtroFile = 0;
203 }
204 else {
[7520]205 if (l > 0 && snxtroFileSkl[l-1] != QDir::separator() ) {
206 snxtroFileSkl += QDir::separator();
207 }
[7506]208 if (v3filenames) {
209 snxtroFileSkl = snxtroFileSkl + fullRoverName + "${V3}" + ".tra";
[6608]210 }
211 else {
[7506]212 snxtroFileSkl = snxtroFileSkl + roverName.left(4) + "${GPSWD}" + ".tro";
[6608]213 }
[7506]214 sampl = settings.value("PPP/snxtroSampl").toInt();
215 intr = settings.value("PPP/snxtroIntr").toString();
216 _snxtroFile = new bncSinexTro(_opt, snxtroFileSkl, intr, sampl);
[6608]217 }
[5860]218}
219
[6608]220
221
[5860]222// Destructor
223////////////////////////////////////////////////////////////////////////////
[5883]224t_pppRun::~t_pppRun() {
[5984]225 delete _logFile;
[5988]226 delete _nmeaFile;
[6608]227 delete _snxtroFile;
[7655]228 while (!_epoData.empty()) {
[7945]229 delete _epoData.front();
[7655]230 _epoData.pop_front();
231 }
[5860]232}
233
[7278]234//
[5860]235////////////////////////////////////////////////////////////////////////////
[6433]236void t_pppRun::slotNewGPSEph(t_ephGPS eph) {
[5860]237 QMutexLocker locker(&_mutex);
238 _pppClient->putEphemeris(&eph);
239}
240
[7278]241//
[5860]242////////////////////////////////////////////////////////////////////////////
[6433]243void t_pppRun::slotNewGlonassEph(t_ephGlo eph) {
[5860]244 QMutexLocker locker(&_mutex);
245 _pppClient->putEphemeris(&eph);
246}
[7278]247
248//
[5860]249////////////////////////////////////////////////////////////////////////////
[6433]250void t_pppRun::slotNewGalileoEph(t_ephGal eph) {
[5860]251 QMutexLocker locker(&_mutex);
252 _pppClient->putEphemeris(&eph);
253}
254
255//
256////////////////////////////////////////////////////////////////////////////
[6966]257void t_pppRun::slotNewBDSEph(t_ephBDS eph) {
258 QMutexLocker locker(&_mutex);
259 _pppClient->putEphemeris(&eph);
260}
261
262//
263////////////////////////////////////////////////////////////////////////////
[6137]264void t_pppRun::slotNewObs(QByteArray staID, QList<t_satObs> obsList) {
[5860]265 QMutexLocker locker(&_mutex);
266
267 if (string(staID.data()) != _opt->_roverName) {
268 return;
269 }
270
[7278]271 // Loop over all observations (possible different epochs)
[5860]272 // -----------------------------------------------------
[6137]273 QListIterator<t_satObs> it(obsList);
[5860]274 while (it.hasNext()) {
[6137]275 const t_satObs& oldObs = it.next();
276 t_satObs* newObs = new t_satObs(oldObs);
[5860]277
278 // Find the corresponding data epoch or create a new one
279 // -----------------------------------------------------
280 t_epoData* epoch = 0;
281 deque<t_epoData*>::const_iterator it;
282 for (it = _epoData.begin(); it != _epoData.end(); it++) {
283 if (newObs->_time == (*it)->_time) {
284 epoch = *it;
285 break;
286 }
287 }
288 if (epoch == 0) {
289 if (_epoData.empty() || newObs->_time > _epoData.back()->_time) {
290 epoch = new t_epoData;
291 epoch->_time = newObs->_time;
292 _epoData.push_back(epoch);
293 }
294 }
295
[6137]296 // Put data into the epoch
297 // -----------------------
[5860]298 if (epoch != 0) {
299 epoch->_satObs.push_back(newObs);
300 }
[6137]301 else {
302 delete newObs;
303 }
[5860]304 }
305
[7945]306 // Make sure the buffer does not grow beyond any limit
307 // ---------------------------------------------------
308 const unsigned MAX_EPODATA_SIZE = 120;
309 if (_epoData.size() > MAX_EPODATA_SIZE) {
310 delete _epoData.front();
311 _epoData.pop_front();
312 }
313
[5860]314 // Process the oldest epochs
315 // ------------------------
[7945]316 while (_epoData.size()) {
[5860]317
318 const vector<t_satObs*>& satObs = _epoData.front()->_satObs;
319
[7945]320 // No corrections yet, skip the epoch
321 // ----------------------------------
322 if (_opt->_corrWaitTime && !_lastClkCorrTime.valid()) {
323 return;
[5873]324 }
325
[7945]326 // Process the front epoch
327 // -----------------------
328 if (_opt->_corrWaitTime == 0 ||
329 _epoData.front()->_time - _lastClkCorrTime < _opt->_corrWaitTime) {
[7278]330
[7945]331 t_output output;
332 _pppClient->processEpoch(satObs, &output);
[5980]333
[7945]334 if (!output._error) {
335 QVector<double> xx(6);
336 xx.data()[0] = output._xyzRover[0];
337 xx.data()[1] = output._xyzRover[1];
338 xx.data()[2] = output._xyzRover[2];
339 xx.data()[3] = output._neu[0];
340 xx.data()[4] = output._neu[1];
341 xx.data()[5] = output._neu[2];
342 emit newPosition(staID, output._epoTime, xx);
343 }
[5984]344
[7945]345 delete _epoData.front();
346 _epoData.pop_front();
347
348 ostringstream log;
349 if (output._error) {
350 log << output._log;
[5989]351 }
[7945]352 else {
353 log.setf(ios::fixed);
354 log << string(output._epoTime) << ' ' << staID.data()
355 << " X = " << setprecision(4) << output._xyzRover[0]
356 << " Y = " << setprecision(4) << output._xyzRover[1]
357 << " Z = " << setprecision(4) << output._xyzRover[2]
358 << " NEU: " << showpos << setw(8) << setprecision(4) << output._neu[0]
359 << " " << showpos << setw(8) << setprecision(4) << output._neu[1]
360 << " " << showpos << setw(8) << setprecision(4) << output._neu[2]
361 << " TRP: " << showpos << setw(8) << setprecision(4) << output._trp0
362 << " " << showpos << setw(8) << setprecision(4) << output._trp;
[7815]363 }
[7945]364
365 if (_logFile && output._epoTime.valid()) {
366 _logFile->write(output._epoTime.gpsw(), output._epoTime.gpssec(),
367 QString(output._log.c_str()));
368 }
369
370 if (!output._error) {
371 QString rmcStr = nmeaString('R', output);
372 QString ggaStr = nmeaString('G', output);
373 if (_nmeaFile) {
374 _nmeaFile->write(output._epoTime.gpsw(), output._epoTime.gpssec(), rmcStr);
375 _nmeaFile->write(output._epoTime.gpsw(), output._epoTime.gpssec(), ggaStr);
376 }
377 emit newNMEAstr(staID, rmcStr.toAscii());
378 emit newNMEAstr(staID, ggaStr.toAscii());
379 if (_snxtroFile && output._epoTime.valid()) {
380 _snxtroFile->write(staID, int(output._epoTime.gpsw()), output._epoTime.gpssec(),
381 output._trp0 + output._trp, output._trpStdev);
382 }
383 }
384 emit newMessage(QByteArray(log.str().c_str()), true);
[5989]385 }
[7945]386 else {
387 return;
388 }
[5860]389 }
390}
[7231]391//
392////////////////////////////////////////////////////////////////////////////
393void t_pppRun::slotNewTec(t_vTec vTec) {
394 if (vTec._layers.size() == 0) {
395 return;
396 }
397
398 if (_opt->_realTime) {
399 if (_opt->_corrMount.empty() || _opt->_corrMount != vTec._staID) {
400 return;
401 }
402 }
403
404 _pppClient->putTec(&vTec);
405}
406
[7278]407//
[5860]408////////////////////////////////////////////////////////////////////////////
[6141]409void t_pppRun::slotNewOrbCorrections(QList<t_orbCorr> orbCorr) {
410 if (orbCorr.size() == 0) {
411 return;
412 }
[5860]413
[5937]414 if (_opt->_realTime) {
[6141]415 if (_opt->_corrMount.empty() || _opt->_corrMount != orbCorr[0]._staID) {
[5937]416 return;
417 }
[5860]418 }
[6141]419 vector<t_orbCorr*> corrections;
420 for (int ii = 0; ii < orbCorr.size(); ii++) {
421 corrections.push_back(new t_orbCorr(orbCorr[ii]));
422 }
[5860]423
[7278]424 _pppClient->putOrbCorrections(corrections);
425
426 for (unsigned ii = 0; ii < corrections.size(); ii++) {
427 delete corrections[ii];
428 }
[6141]429}
430
[7278]431//
[6141]432////////////////////////////////////////////////////////////////////////////
433void t_pppRun::slotNewClkCorrections(QList<t_clkCorr> clkCorr) {
434 if (clkCorr.size() == 0) {
[5860]435 return;
436 }
437
[7301]438 if (_opt->_realTime) {
[6141]439 if (_opt->_corrMount.empty() || _opt->_corrMount != clkCorr[0]._staID) {
440 return;
[5860]441 }
442 }
[6141]443 vector<t_clkCorr*> corrections;
444 for (int ii = 0; ii < clkCorr.size(); ii++) {
445 corrections.push_back(new t_clkCorr(clkCorr[ii]));
[6991]446 _lastClkCorrTime = clkCorr[ii]._time;
[6141]447 }
[7278]448 _pppClient->putClkCorrections(corrections);
449
450 for (unsigned ii = 0; ii < corrections.size(); ii++) {
451 delete corrections[ii];
452 }
[5860]453}
[5883]454
[7278]455//
[5883]456////////////////////////////////////////////////////////////////////////////
[6478]457void t_pppRun::slotNewCodeBiases(QList<t_satCodeBias> codeBiases) {
458 if (codeBiases.size() == 0) {
459 return;
460 }
461
462 if (_opt->_realTime) {
463 if (_opt->_corrMount.empty() || _opt->_corrMount != codeBiases[0]._staID) {
464 return;
465 }
466 }
467 vector<t_satCodeBias*> biases;
468 for (int ii = 0; ii < codeBiases.size(); ii++) {
469 biases.push_back(new t_satCodeBias(codeBiases[ii]));
470 }
471
[7278]472 _pppClient->putCodeBiases(biases);
473
474 for (unsigned ii = 0; ii < biases.size(); ii++) {
475 delete biases[ii];
476 }
[6478]477}
478
[7278]479//
[6478]480////////////////////////////////////////////////////////////////////////////
[7288]481void t_pppRun::slotNewPhaseBiases(QList<t_satPhaseBias> phaseBiases) {
482 if (phaseBiases.size() == 0) {
483 return;
484 }
485
486 if (_opt->_realTime) {
487 if (_opt->_corrMount.empty() || _opt->_corrMount != phaseBiases[0]._staID) {
488 return;
489 }
490 }
491 vector<t_satPhaseBias*> biases;
492 for (int ii = 0; ii < phaseBiases.size(); ii++) {
493 biases.push_back(new t_satPhaseBias(phaseBiases[ii]));
494 }
495
496 _pppClient->putPhaseBiases(biases);
497
498 for (unsigned ii = 0; ii < biases.size(); ii++) {
499 delete biases[ii];
500 }
501}
502
503//
504////////////////////////////////////////////////////////////////////////////
[5883]505void t_pppRun::processFiles() {
506
507 try {
[5889]508 _rnxObsFile = new t_rnxObsFile(QString(_opt->_rinexObs.c_str()), t_rnxObsFile::input);
[5883]509 }
510 catch (...) {
511 delete _rnxObsFile; _rnxObsFile = 0;
[5940]512 emit finishedRnxPPP();
[5883]513 return;
514 }
515
[5889]516 _rnxNavFile = new t_rnxNavFile(QString(_opt->_rinexNav.c_str()), t_rnxNavFile::input);
[5883]517
[5889]518 if (!_opt->_corrFile.empty()) {
519 _corrFile = new t_corrFile(QString(_opt->_corrFile.c_str()));
[7231]520 connect(_corrFile, SIGNAL(newTec(t_vTec)),
521 this, SLOT(slotNewTec(t_vTec)));
[6145]522 connect(_corrFile, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
523 this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)));
[6185]524 connect(_corrFile, SIGNAL(newClkCorrections(QList<t_clkCorr>)),
525 this, SLOT(slotNewClkCorrections(QList<t_clkCorr>)));
[6478]526 connect(_corrFile, SIGNAL(newCodeBiases(QList<t_satCodeBias>)),
527 this, SLOT(slotNewCodeBiases(QList<t_satCodeBias>)));
[7288]528 connect(_corrFile, SIGNAL(newPhaseBiases(QList<t_satPhaseBias>)),
529 this, SLOT(slotNewPhaseBiases(QList<t_satPhaseBias>)));
[5883]530 }
531
532 // Read/Process Observations
533 // -------------------------
534 int nEpo = 0;
535 const t_rnxObsFile::t_rnxEpo* epo = 0;
[5973]536 while ( !_stopFlag && (epo = _rnxObsFile->nextEpoch()) != 0 ) {
[5883]537 ++nEpo;
538
[5951]539 if (_speed < 100) {
540 double sleepTime = 2.0 / _speed;
[6537]541 t_pppThread::msleep(int(sleepTime*1.e3));
[5883]542 }
543
544 // Get Corrections
545 // ---------------
546 if (_corrFile) {
[6510]547 try {
548 _corrFile->syncRead(epo->tt);
549 }
550 catch (const char* msg) {
551 emit newMessage(QByteArray(msg), true);
552 break;
553 }
554 catch (const string& msg) {
555 emit newMessage(QByteArray(msg.c_str()), true);
556 break;
557 }
558 catch (...) {
559 emit newMessage("unknown exceptions in corrFile", true);
560 break;
561 }
[5883]562 }
563
564 // Get Ephemerides
565 // ----------------
566 t_eph* eph = 0;
[7169]567 const QMap<QString, unsigned int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0;
[5883]568 while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) {
[5889]569 _pppClient->putEphemeris(eph);
570 delete eph; eph = 0;
[5883]571 }
572
[5890]573 // Create list of observations and start epoch processing
574 // ------------------------------------------------------
[6137]575 QList<t_satObs> obsList;
[5883]576 for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) {
577 const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs];
[7278]578
[6137]579 t_satObs obs;
[5883]580 t_rnxObsFile::setObsFromRnx(_rnxObsFile, epo, rnxSat, obs);
[5890]581 obsList << obs;
582 }
583 slotNewObs(QByteArray(_opt->_roverName.c_str()), obsList);
[5883]584
[5890]585
[5883]586 if (nEpo % 10 == 0) {
[5940]587 emit progressRnxPPP(nEpo);
[5883]588 }
[7278]589
[5950]590 QCoreApplication::processEvents();
[5883]591 }
592
[5940]593 emit finishedRnxPPP();
[5927]594
[5883]595 if (BNC_CORE->mode() != t_bncCore::interactive) {
596 qApp->exit(0);
597 }
[5944]598 else {
599 BNC_CORE->stopPPP();
600 }
[5883]601}
602
[7278]603//
[5883]604////////////////////////////////////////////////////////////////////////////
605void t_pppRun::slotSetSpeed(int speed) {
606 QMutexLocker locker(&_mutex);
607 _speed = speed;
608}
[5973]609
[7278]610//
[5973]611////////////////////////////////////////////////////////////////////////////
612void t_pppRun::slotSetStopFlag() {
613 QMutexLocker locker(&_mutex);
614 _stopFlag = true;
615}
[5989]616
[7278]617//
[5989]618////////////////////////////////////////////////////////////////////////////
[5990]619QString t_pppRun::nmeaString(char strType, const t_output& output) {
[5989]620
[7278]621 double ell[3];
[5989]622 xyz2ell(output._xyzRover, ell);
623 double phiDeg = ell[0] * 180 / M_PI;
624 double lamDeg = ell[1] * 180 / M_PI;
625
[7931]626 unsigned year, month, day;
627 output._epoTime.civil_date(year, month, day);
628 double gps_utc = gnumleap(year, month, day);
629
[5989]630 char phiCh = 'N';
631 if (phiDeg < 0) {
632 phiDeg = -phiDeg;
633 phiCh = 'S';
[7278]634 }
[5989]635 char lamCh = 'E';
636 if (lamDeg < 0) {
637 lamDeg = -lamDeg;
638 lamCh = 'W';
[7278]639 }
[5989]640
[5990]641 ostringstream out;
642 out.setf(ios::fixed);
[5989]643
[5990]644 if (strType == 'R') {
645 string datestr = output._epoTime.datestr(0); // yyyymmdd
[7278]646 out << "GPRMC,"
[7931]647 << (output._epoTime - gps_utc).timestr(3,0) << ",A,"
[7278]648 << setw(2) << setfill('0') << int(phiDeg)
649 << setw(6) << setprecision(3) << setfill('0')
[5990]650 << fmod(60*phiDeg,60) << ',' << phiCh << ','
[7278]651 << setw(3) << setfill('0') << int(lamDeg)
652 << setw(6) << setprecision(3) << setfill('0')
[5990]653 << fmod(60*lamDeg,60) << ',' << lamCh << ",,,"
654 << datestr[6] << datestr[7] << datestr[4] << datestr[5]
655 << datestr[2] << datestr[3] << ",,";
656 }
657 else if (strType == 'G') {
[7278]658 out << "GPGGA,"
[7931]659 << (output._epoTime - gps_utc).timestr(2,0) << ','
[7278]660 << setw(2) << setfill('0') << int(phiDeg)
661 << setw(10) << setprecision(7) << setfill('0')
[5990]662 << fmod(60*phiDeg,60) << ',' << phiCh << ','
[7278]663 << setw(3) << setfill('0') << int(lamDeg)
664 << setw(10) << setprecision(7) << setfill('0')
665 << fmod(60*lamDeg,60) << ',' << lamCh
[5990]666 << ",1," << setw(2) << setfill('0') << output._numSat << ','
[7931]667 << setw(3) << setprecision(1) << output._hDop << ','
[5990]668 << setprecision(3) << ell[2] << ",M,0.0,M,,";
669 }
670 else {
671 return "";
672 }
[5989]673
[5990]674 QString nmStr(out.str().c_str());
[5989]675 unsigned char XOR = 0;
676 for (int ii = 0; ii < nmStr.length(); ii++) {
677 XOR ^= (unsigned char) nmStr[ii].toAscii();
678 }
679
680 return '$' + nmStr + QString("*%1\n").arg(int(XOR), 0, 16).toUpper();
681}
682
[7968]683//
684////////////////////////////////////////////////////////////////////////////
685void t_pppRun::slotProviderIDChanged(QString mountPoint) {
686 QMutexLocker locker(&_mutex);
687
688 if (mountPoint.toStdString() !=_opt->_corrMount) {
689 return;
690 }
691
692 QString msg = "pppRun " + QString(_opt->_roverName.c_str()) + ": Provider Changed: " + mountPoint;
693 emit newMessage(msg.toAscii(), true);
694
695 _pppClient->reset();
696
697 while (!_epoData.empty()) {
698 delete _epoData.front();
699 _epoData.pop_front();
700 }
701}
Note: See TracBrowser for help on using the repository browser.