source: ntrip/trunk/BNC/src/bncpppclient.cpp@ 5578

Last change on this file since 5578 was 5578, checked in by mervart, 10 years ago
File size: 14.8 KB
RevLine 
[2035]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: bncPPPclient
30 *
31 * Purpose: Precise Point Positioning
32 *
33 * Author: L. Mervart
34 *
35 * Created: 21-Nov-2009
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
[2249]41#include <newmatio.h>
[2238]42#include <iomanip>
[2549]43#include <sstream>
[2238]44
[2035]45#include "bncpppclient.h"
[5070]46#include "bnccore.h"
[2043]47#include "bncutils.h"
[2044]48#include "bncconst.h"
[2058]49#include "bncmodel.h"
[3635]50#include "pppopt.h"
[2035]51
52using namespace std;
53
54// Constructor
55////////////////////////////////////////////////////////////////////////////
[3640]56bncPPPclient::bncPPPclient(QByteArray staID, t_pppOpt* opt, bool connectSlots) :
57 bncEphUser(connectSlots) {
[2113]58
[3635]59 if (opt) {
60 _opt = opt;
61 _optOwner = false;
[2226]62 }
63 else {
[3635]64 _opt = new t_pppOpt();
65 _optOwner = true;
[2226]66 }
67
[3635]68 _staID = staID;
[2776]69
[3638]70 _model = new bncModel(this);
71
[3640]72 if (connectSlots) {
73 connect(this, SIGNAL(newMessage(QByteArray,bool)),
[5068]74 BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
[2548]75
[5068]76 connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)),
[3640]77 this, SLOT(slotNewCorrections(QList<QString>)));
[5577]78
79 connect(BNC_CORE, SIGNAL(providerIDChanged(QString)),
80 this, SLOT(slotProviderIDChanged(QString)));
[3640]81 }
[2035]82}
83
84// Destructor
85////////////////////////////////////////////////////////////////////////////
86bncPPPclient::~bncPPPclient() {
[2058]87 delete _model;
[2808]88 while (!_epoData.empty()) {
89 delete _epoData.front();
90 _epoData.pop();
91 }
[2035]92 QMapIterator<QString, t_corr*> ic(_corr);
93 while (ic.hasNext()) {
94 ic.next();
95 delete ic.value();
96 }
[2274]97 QMapIterator<QString, t_bias*> ib(_bias);
98 while (ib.hasNext()) {
99 ib.next();
100 delete ib.value();
101 }
[3635]102 if (_optOwner) {
103 delete _opt;
104 }
[2035]105}
106
107//
108////////////////////////////////////////////////////////////////////////////
[2711]109void bncPPPclient::putNewObs(const t_obs& obs) {
[2037]110 QMutexLocker locker(&_mutex);
[2051]111
[2777]112 if (obs.satSys == 'R') {
[3635]113 if (!_opt->useGlonass) return;
[2225]114 }
[2777]115 else if (obs.satSys == 'E') {
[3635]116 if (!_opt->useGalileo) return;
[2776]117 }
118 else if (obs.satSys != 'G') {
119 return;
120 }
[2225]121
[2051]122 t_satData* satData = new t_satData();
[2808]123 satData->tt = bncTime(obs.GPSWeek, obs.GPSWeeks);
[2051]124
[2274]125 // Satellite Number
126 // ----------------
[2777]127 satData->prn = QString("%1%2").arg(obs.satSys).arg(obs.satNum,2,10,QChar('0'));
[2274]128
[2505]129 // Check Slips
130 // -----------
131 slipInfo& sInfo = _slips[satData->prn];
[2711]132 if ( sInfo.slipCntL1 == obs.slip_cnt_L1 &&
[2778]133 sInfo.slipCntL2 == obs.slip_cnt_L2 &&
134 sInfo.slipCntL5 == obs.slip_cnt_L5 ) {
[2505]135 satData->slipFlag = false;
136 }
137 else {
138 satData->slipFlag = true;
139 }
[2711]140 sInfo.slipCntL1 = obs.slip_cnt_L1;
141 sInfo.slipCntL2 = obs.slip_cnt_L2;
[2505]142
[2274]143 // Handle Code Biases
144 // ------------------
145 t_bias* bb = 0;
146 if (_bias.contains(satData->prn)) {
147 bb = _bias.value(satData->prn);
148 }
149
[2808]150 // Add new epoch, process the older ones
151 // -------------------------------------
152 if (_epoData.size() == 0) {
153 _epoData.push(new t_epoData());
154 _epoData.back()->tt = satData->tt;
[2037]155 }
[2808]156 else if (satData->tt != _epoData.back()->tt) {
157 processEpochs();
158 _epoData.push(new t_epoData());
159 _epoData.back()->tt = satData->tt;
[2037]160 }
[2039]161
[4784]162 // Set Observations GPS and Glonass
163 // --------------------------------
164 if (obs.satSys == 'G' || obs.satSys == 'R') {
[4799]165 const QByteArray preferredTypes("WPC");
166 for (int ii = preferredTypes.length()-1; ii >= 0; ii--) {
[4787]167 for (int iPhase = 0; iPhase <= 1; iPhase++) {
168 for (int iFreq = 1; iFreq <= 2; iFreq++) {
169
[5200]170 char rnxStr[4]; rnxStr[3] = '\0';
[4787]171 double* p_value = 0;
172 if (iPhase == 0 && iFreq == 1) {
173 rnxStr[0] = 'C';
174 rnxStr[1] = '1';
175 p_value = &satData->P1;
176 }
177 else if (iPhase == 0 && iFreq == 2) {
178 rnxStr[0] = 'C';
179 rnxStr[1] = '2';
180 p_value = &satData->P2;
181 }
182 else if (iPhase == 1 && iFreq == 1) {
183 rnxStr[0] = 'L';
184 rnxStr[1] = '1';
185 p_value = &satData->L1;
186 }
187 else if (iPhase == 1 && iFreq == 2) {
188 rnxStr[0] = 'L';
189 rnxStr[1] = '2';
190 p_value = &satData->L2;
191 }
192
[4799]193 rnxStr[2] = preferredTypes[ii];
[4787]194
195 double measdata = obs.measdata(rnxStr, 3.0);
196 if (measdata != 0.0) {
197 *p_value = measdata;
198 if (rnxStr[0] == 'C' && bb) {
[5200]199 char biasStr[3];
[4787]200 biasStr[0] = rnxStr[1];
201 biasStr[1] = rnxStr[2];
[5200]202 biasStr[2] = '\0';
[4787]203 *p_value += bb->value(biasStr);
204 }
205 }
[4784]206 }
[4787]207 }
[2778]208 }
[4787]209
[4784]210 if (satData->P1 != 0.0 && satData->P2 != 0.0 &&
211 satData->L1 != 0.0 && satData->L2 != 0.0 ) {
212 double f1 = t_CST::f1(obs.satSys, obs.slotNum);
213 double f2 = t_CST::f2(obs.satSys, obs.slotNum);
214 double a1 = f1 * f1 / (f1 * f1 - f2 * f2);
215 double a2 = - f2 * f2 / (f1 * f1 - f2 * f2);
216 satData->L1 = satData->L1 * t_CST::c / f1;
217 satData->L2 = satData->L2 * t_CST::c / f2;
218 satData->P3 = a1 * satData->P1 + a2 * satData->P2;
219 satData->L3 = a1 * satData->L1 + a2 * satData->L2;
220 satData->lambda3 = a1 * t_CST::c / f1 + a2 * t_CST::c / f2;
[3408]221 _epoData.back()->satData[satData->prn] = satData;
[2778]222 }
223 else {
224 delete satData;
225 }
[2786]226 }
[2778]227
[2786]228 // Set Observations Galileo
229 // ------------------------
[2778]230 else if (obs.satSys == 'E') {
[4784]231 satData->P1 = obs.measdata("C1", 3.0);
232 satData->L1 = obs.measdata("L1", 3.0);
233 satData->P5 = obs.measdata("C5", 3.0);
234 satData->L5 = obs.measdata("L5", 3.0);
235 if (satData->P1 != 0.0 && satData->P5 != 0.0 &&
236 satData->L1 != 0.0 && satData->L5 != 0.0 ) {
[2786]237 double f1 = t_CST::freq1;
238 double f5 = t_CST::freq5;
[4784]239 double a1 = f1 * f1 / (f1 * f1 - f5 * f5);
240 double a5 = - f5 * f5 / (f1 * f1 - f5 * f5);
241 satData->L1 = satData->L1 * t_CST::c / f1;
242 satData->L5 = satData->L5 * t_CST::c / f5;
243 satData->P3 = a1 * satData->P1 + a5 * satData->P5;
244 satData->L3 = a1 * satData->L1 + a5 * satData->L5;
245 satData->lambda3 = a1 * t_CST::c / f1 + a5 * t_CST::c / f5;
[3408]246 _epoData.back()->satData[satData->prn] = satData;
[2778]247 }
248 else {
249 delete satData;
250 }
251 }
[2035]252}
253
254//
255////////////////////////////////////////////////////////////////////////////
256void bncPPPclient::slotNewCorrections(QList<QString> corrList) {
257 QMutexLocker locker(&_mutex);
[2069]258
[2966]259 // Check the Mountpoint (source of corrections)
260 // --------------------------------------------
[3635]261 if (!_opt->pppCorrMount.isEmpty()) {
[2966]262 QMutableListIterator<QString> itm(corrList);
263 while (itm.hasNext()) {
264 QStringList hlp = itm.next().split(" ");
265 if (hlp.size() > 0) {
266 QString mountpoint = hlp[hlp.size()-1];
[3635]267 if (mountpoint != _opt->pppCorrMount) {
[2966]268 itm.remove();
269 }
270 }
271 }
272 }
273
[2069]274 if (corrList.size() == 0) {
275 return;
276 }
277
[2035]278 QListIterator<QString> it(corrList);
279 while (it.hasNext()) {
[2911]280 QString line = it.next();
281
282 QTextStream in(&line);
[2035]283 int messageType;
284 int updateInterval;
285 int GPSweek;
286 double GPSweeks;
287 QString prn;
288 in >> messageType >> updateInterval >> GPSweek >> GPSweeks >> prn;
[2809]289
[2911]290 if ( t_corr::relevantMessageType(messageType) ) {
[2035]291 t_corr* cc = 0;
292 if (_corr.contains(prn)) {
293 cc = _corr.value(prn);
294 }
295 else {
296 cc = new t_corr();
297 _corr[prn] = cc;
298 }
[2911]299 cc->readLine(line);
[3751]300 _corr_tt = cc->tClk;
[2035]301 }
[4784]302 else if ( messageType == BTYPE_GPS || messageType == BTYPE_GLONASS ) {
[2274]303 t_bias* bb = 0;
304 if (_bias.contains(prn)) {
[2341]305 bb = _bias.value(prn);
[2274]306 }
307 else {
308 bb = new t_bias();
309 _bias[prn] = bb;
310 }
[4784]311 bb->readLine(line);
[2274]312 }
[2035]313 }
314}
315
316// Satellite Position
317////////////////////////////////////////////////////////////////////////////
[2123]318t_irc bncPPPclient::getSatPos(const bncTime& tt, const QString& prn,
[2357]319 ColumnVector& xc, ColumnVector& vv) {
[2035]320
[2576]321 const double MAXAGE = 120.0;
[2041]322
[2035]323 if (_eph.contains(prn)) {
[2040]324
[5135]325 if (_opt->pppMode && prn[0] != 'E') {
[2068]326 if (_corr.contains(prn)) {
327 t_corr* cc = _corr.value(prn);
[3751]328 if (cc->ready() && tt - cc->tClk < MAXAGE) {
[2576]329 t_eph* eLast = _eph.value(prn)->last;
330 t_eph* ePrev = _eph.value(prn)->prev;
331 if (eLast && eLast->IOD() == cc->iod) {
332 eLast->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data());
[3521]333 return applyCorr(tt, cc, xc, vv);
[2576]334 }
335 else if (ePrev && ePrev->IOD() == cc->iod) {
336 ePrev->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data());
[3521]337 return applyCorr(tt, cc, xc, vv);
[2576]338 }
339 }
[2041]340 }
[2040]341 }
[2576]342
343 else {
344 t_eph* ee = _eph.value(prn)->last;
345 ee->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data());
346 return success;
347 }
[2035]348 }
349
350 return failure;
351}
352
353//
354////////////////////////////////////////////////////////////////////////////
[3319]355t_irc bncPPPclient::applyCorr(const bncTime& tt, const t_corr* cc,
[3521]356 ColumnVector& xc, ColumnVector& vv) {
[2041]357
[3751]358 double dtRao = tt - cc->tRao;
[4979]359
360 // Position
361 // --------
[5565]362 ColumnVector raoHlp = cc->rao + cc->dotRao * dtRao;
[2296]363
[3319]364 if (raoHlp.norm_Frobenius() > 20.0) {
365 return failure;
366 }
367
[3521]368 ColumnVector dx(3);
369 RSW_to_XYZ(xc.Rows(1,3), vv, raoHlp, dx);
370 xc[0] -= dx[0];
371 xc[1] -= dx[1];
372 xc[2] -= dx[2];
[3751]373
[4979]374 // Velocity
375 // --------
[5565]376 ColumnVector dotRaoHlp = cc->dotRao;
[4979]377
378 ColumnVector dv(3);
379 RSW_to_XYZ(xc.Rows(1,3), vv, dotRaoHlp, dv);
380 vv[0] -= dv[0];
381 vv[1] -= dv[1];
382 vv[2] -= dv[2];
383
384 // Clocks
385 // ------
[3751]386 double dtClk = tt - cc->tClk;
387
388 xc[3] += cc->dClk + cc->dotDClk * dtClk + cc->dotDotDClk * dtClk * dtClk
[3521]389 + cc->hrClk;
[2296]390
[3319]391 return success;
[2041]392}
393
[2049]394// Correct Time of Transmission
395////////////////////////////////////////////////////////////////////////////
[2240]396t_irc bncPPPclient::cmpToT(t_satData* satData) {
[2049]397
[2051]398 double prange = satData->P3;
[2049]399 if (prange == 0.0) {
400 return failure;
401 }
402
403 double clkSat = 0.0;
404 for (int ii = 1; ii <= 10; ii++) {
405
[2808]406 bncTime ToT = satData->tt - prange / t_CST::c - clkSat;
[2049]407
408 ColumnVector xc(4);
409 ColumnVector vv(3);
[2357]410 if (getSatPos(ToT, satData->prn, xc, vv) != success) {
[2049]411 return failure;
412 }
413
414 double clkSatOld = clkSat;
[2050]415 clkSat = xc(4);
[2049]416
417 if ( fabs(clkSat-clkSatOld) * t_CST::c < 1.e-4 ) {
418 satData->xx = xc.Rows(1,3);
419 satData->vv = vv;
[2050]420 satData->clk = clkSat * t_CST::c;
[2049]421 return success;
422 }
423 }
424
425 return failure;
426}
427
[2041]428//
429////////////////////////////////////////////////////////////////////////////
[2808]430void bncPPPclient::processFrontEpoch() {
[2035]431
[4149]432#ifdef BNC_DEBUG
433 QString msg = "List of Corrections\n";
434 QMapIterator<QString, t_corr*> itC(_corr);
435 while (itC.hasNext()) {
436 itC.next();
437 QString src = itC.key();
438 const t_corr* corr = itC.value();
439 msg += QString("%1 %2 %3 %4\n")
440 .arg(corr->prn)
441 .arg(corr->iod)
442 .arg(QString(corr->tClk.datestr().c_str()) + "_" + QString(corr->tClk.timestr().c_str()))
443 .arg(QString(corr->tRao.datestr().c_str()) + "_" + QString(corr->tRao.timestr().c_str()));
444 }
445
446 msg += "List of Ephemeris\n";
447 QMapIterator<QString, t_ephPair*> itE(_eph);
448 while (itE.hasNext()) {
449 itE.next();
450 QString prn = itE.key();
451 const t_ephPair* ephPair = itE.value();
452 if (ephPair->prev) {
453 msg += QString("%1 %2 %3 %4 %5\n")
454 .arg(prn)
455 .arg(ephPair->last->IOD())
456 .arg(QString(ephPair->last->TOC().datestr().c_str()) + "_" +
457 QString(ephPair->last->TOC().timestr().c_str()))
458 .arg(ephPair->prev->IOD())
459 .arg(QString(ephPair->prev->TOC().datestr().c_str()) + "_" +
460 QString(ephPair->prev->TOC().timestr().c_str()));
461 }
462 else {
463 msg += QString("%1 %2 %3\n")
464 .arg(prn)
465 .arg(ephPair->last->IOD())
466 .arg(QString(ephPair->last->TOC().datestr().c_str()) + "_" +
467 QString(ephPair->last->TOC().timestr().c_str()));
468 }
469 }
470
471 emit newMessage(msg.toAscii(), false);
472#endif // BNC_DEBUG
473
[2053]474 // Data Pre-Processing
475 // -------------------
[3408]476 QMutableMapIterator<QString, t_satData*> it(_epoData.front()->satData);
477 while (it.hasNext()) {
478 it.next();
479 QString prn = it.key();
480 t_satData* satData = it.value();
[2049]481
[2240]482 if (cmpToT(satData) != success) {
[2049]483 delete satData;
[3408]484 it.remove();
[2049]485 continue;
486 }
[2053]487 }
[2035]488
[2060]489 // Filter Solution
490 // ---------------
[2808]491 if (_model->update(_epoData.front()) == success) {
[2145]492 emit newPosition(_model->time(), _model->x(), _model->y(), _model->z());
[2060]493 }
[2035]494}
[2808]495
496//
497////////////////////////////////////////////////////////////////////////////
498void bncPPPclient::processEpochs() {
[2809]499
[2810]500 // Make sure the buffer does not grow beyond any limit
501 // ---------------------------------------------------
502 const unsigned MAX_EPODATA_SIZE = 120;
503 if (_epoData.size() > MAX_EPODATA_SIZE) {
504 delete _epoData.front();
505 _epoData.pop();
506 }
507
508 // Loop over all unprocessed epochs
509 // --------------------------------
[2809]510 while (!_epoData.empty()) {
[2810]511
[2809]512 t_epoData* frontEpoData = _epoData.front();
513
514 // No corrections yet, skip the epoch
515 // ----------------------------------
[3635]516 if (_opt->corrSync != 0.0 && !_corr_tt.valid()) {
[2810]517 return;
[2809]518 }
519
[2810]520 // Process the front epoch
521 // -----------------------
[3635]522 if (_opt->corrSync == 0 || frontEpoData->tt - _corr_tt < _opt->corrSync) {
[2809]523 processFrontEpoch();
524 delete _epoData.front();
525 _epoData.pop();
526 }
527 else {
528 return;
529 }
530 }
[2808]531}
[5566]532
[5577]533//
534////////////////////////////////////////////////////////////////////////////
[5578]535void bncPPPclient::slotProviderIDChanged(QString mountPoint) {
[5577]536 QMutexLocker locker(&_mutex);
537
[5578]538 if (mountPoint != _opt->pppCorrMount) {
[5577]539 return;
540 }
[5578]541 emit newMessage("bncPPPclient " + _staID + ": Provider Changed: " + mountPoint.toAscii() + "\n", true);
[5577]542}
Note: See TracBrowser for help on using the repository browser.