source: ntrip/trunk/BNC/src/PPP/pppClient.cpp@ 9551

Last change on this file since 9551 was 9551, checked in by stuerze, 2 years ago

update regarding PPP

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 27.5 KB
RevLine 
[7237]1/* -------------------------------------------------------------------------
2 * BKG NTRIP Client
3 * -------------------------------------------------------------------------
4 *
5 * Class: t_pppClient
6 *
7 * Purpose: PPP Client processing starts here
8 *
9 * Author: L. Mervart
10 *
11 * Created: 29-Jul-2014
12 *
[7271]13 * Changes:
[7237]14 *
15 * -----------------------------------------------------------------------*/
16
17#include <QThreadStorage>
18
19#include <iostream>
20#include <iomanip>
[8451]21#include <cmath>
[7237]22#include <stdlib.h>
23#include <string.h>
24#include <stdexcept>
25
26#include "pppClient.h"
27#include "pppEphPool.h"
28#include "pppObsPool.h"
29#include "bncconst.h"
30#include "bncutils.h"
31#include "pppStation.h"
32#include "bncantex.h"
33#include "pppFilter.h"
34
35using namespace BNC_PPP;
36using namespace std;
37
38// Global variable holding thread-specific pointers
39//////////////////////////////////////////////////////////////////////////////
40QThreadStorage<t_pppClient*> CLIENTS;
41
42// Static function returning thread-specific pointer
43//////////////////////////////////////////////////////////////////////////////
44t_pppClient* t_pppClient::instance() {
45 return CLIENTS.localData();
46}
47
48// Constructor
49//////////////////////////////////////////////////////////////////////////////
50t_pppClient::t_pppClient(const t_pppOptions* opt) {
51 _output = 0;
52 _opt = new t_pppOptions(*opt);
53 _log = new ostringstream();
54 _ephPool = new t_pppEphPool();
55 _obsPool = new t_pppObsPool();
56 _staRover = new t_pppStation();
[8905]57 _filter = new t_pppFilter(_obsPool);
[7237]58 _tides = new t_tides();
[8905]59 _antex = 0;
[7237]60 if (!_opt->_antexFileName.empty()) {
61 _antex = new bncAntex(_opt->_antexFileName.c_str());
62 }
[8905]63 if (!_opt->_blqFileName.empty()) {
64 if (_tides->readBlqFile(_opt->_blqFileName.c_str()) == success) {
65 //_tides->printAllBlqSets();
66 }
[7237]67 }
[7996]68
[8910]69 if (_opt->_refSatRequired) {
[8912]70 for (unsigned iSys = 0; iSys < _opt->systems().size(); iSys++) {
[9508]71 char sys = _opt->systems()[iSys];
72 _refSatMap[sys] = new t_pppRefSat();
[8905]73 }
[7972]74 }
[9419]75
[9288]76 _offGR = 0.0;
77 _offGE = 0.0;
78 _offGC = 0.0;
[7237]79 CLIENTS.setLocalData(this); // CLIENTS takes ownership over "this"
80}
81
82// Destructor
83//////////////////////////////////////////////////////////////////////////////
84t_pppClient::~t_pppClient() {
85 delete _log;
86 delete _opt;
[8905]87 delete _filter;
[7237]88 delete _ephPool;
89 delete _obsPool;
90 delete _staRover;
[7866]91 if (_antex) {
92 delete _antex;
93 }
[7237]94 delete _tides;
95 clearObs();
[9508]96 QMapIterator<char, t_pppRefSat*> it(_refSatMap);
97 while (it.hasNext()) {
98 it.next();
99 delete it.value();
100 }
101 _refSatMap.clear();
[7237]102}
103
[7271]104//
[7237]105//////////////////////////////////////////////////////////////////////////////
106void t_pppClient::putEphemeris(const t_eph* eph) {
107 const t_ephGPS* ephGPS = dynamic_cast<const t_ephGPS*>(eph);
108 const t_ephGlo* ephGlo = dynamic_cast<const t_ephGlo*>(eph);
109 const t_ephGal* ephGal = dynamic_cast<const t_ephGal*>(eph);
[7271]110 const t_ephBDS* ephBDS = dynamic_cast<const t_ephBDS*>(eph);
[7237]111 if (ephGPS) {
112 _ephPool->putEphemeris(new t_ephGPS(*ephGPS));
113 }
114 else if (ephGlo) {
115 _ephPool->putEphemeris(new t_ephGlo(*ephGlo));
116 }
117 else if (ephGal) {
118 _ephPool->putEphemeris(new t_ephGal(*ephGal));
119 }
[7271]120 else if (ephBDS) {
121 _ephPool->putEphemeris(new t_ephBDS(*ephBDS));
122 }
[7237]123}
124
125//
126//////////////////////////////////////////////////////////////////////////////
127void t_pppClient::putTec(const t_vTec* vTec) {
[7248]128 _obsPool->putTec(new t_vTec(*vTec));
[7237]129}
130
[7271]131//
[7237]132//////////////////////////////////////////////////////////////////////////////
133void t_pppClient::putOrbCorrections(const vector<t_orbCorr*>& corr) {
134 for (unsigned ii = 0; ii < corr.size(); ii++) {
135 _ephPool->putOrbCorrection(new t_orbCorr(*corr[ii]));
136 }
137}
138
[7271]139//
[7237]140//////////////////////////////////////////////////////////////////////////////
141void t_pppClient::putClkCorrections(const vector<t_clkCorr*>& corr) {
142 for (unsigned ii = 0; ii < corr.size(); ii++) {
143 _ephPool->putClkCorrection(new t_clkCorr(*corr[ii]));
144 }
145}
146
[7271]147//
[7237]148//////////////////////////////////////////////////////////////////////////////
149void t_pppClient::putCodeBiases(const vector<t_satCodeBias*>& biases) {
150 for (unsigned ii = 0; ii < biases.size(); ii++) {
151 _obsPool->putCodeBias(new t_satCodeBias(*biases[ii]));
152 }
153}
154
155//
156//////////////////////////////////////////////////////////////////////////////
[7288]157void t_pppClient::putPhaseBiases(const vector<t_satPhaseBias*>& biases) {
158 for (unsigned ii = 0; ii < biases.size(); ii++) {
159 _obsPool->putPhaseBias(new t_satPhaseBias(*biases[ii]));
160 }
161}
162
163//
164//////////////////////////////////////////////////////////////////////////////
[7237]165t_irc t_pppClient::prepareObs(const vector<t_satObs*>& satObs,
166 vector<t_pppSatObs*>& obsVector, bncTime& epoTime) {
[8905]167
[7271]168 // Default
[7237]169 // -------
170 epoTime.reset();
[8956]171 clearObs();
[7237]172
173 // Create vector of valid observations
174 // -----------------------------------
175 for (unsigned ii = 0; ii < satObs.size(); ii++) {
176 char system = satObs[ii]->_prn.system();
[8912]177 if (_opt->useSystem(system)) {
[7237]178 t_pppSatObs* pppSatObs = new t_pppSatObs(*satObs[ii]);
179 if (pppSatObs->isValid()) {
180 obsVector.push_back(pppSatObs);
181 }
182 else {
183 delete pppSatObs;
184 }
185 }
186 }
187
188 // Check whether data are synchronized, compute epoTime
189 // ----------------------------------------------------
190 const double MAXSYNC = 0.05; // synchronization limit
191 double meanDt = 0.0;
192 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
193 const t_pppSatObs* satObs = obsVector.at(ii);
194 if (epoTime.undef()) {
195 epoTime = satObs->time();
196 }
197 else {
198 double dt = satObs->time() - epoTime;
199 if (fabs(dt) > MAXSYNC) {
200 LOG << "t_pppClient::prepareObs asynchronous observations" << endl;
201 return failure;
202 }
203 meanDt += dt;
204 }
205 }
206
207 if (obsVector.size() > 0) {
208 epoTime += meanDt / obsVector.size();
209 }
210
211 return success;
212}
213
[8905]214//
215//////////////////////////////////////////////////////////////////////////////
216bool t_pppClient::preparePseudoObs(std::vector<t_pppSatObs*>& obsVector) {
217
218 bool pseudoObsIono = false;
219
[8912]220 if (_opt->_pseudoObsIono) {
[8905]221 vector<t_pppSatObs*>::iterator it = obsVector.begin();
222 while (it != obsVector.end()) {
223 t_pppSatObs* satObs = *it;
[9508]224 char sys = satObs->prn().system();
225 t_pppRefSat* refSat = _refSatMap[sys];
[8905]226 double stecRef = refSat->stecValue();
227 if (stecRef && !satObs->isReference()) {
228 pseudoObsIono = true;
229 satObs->setPseudoObsIono(t_frequency::G1, stecRef);
230 }
231 it++;
232 }
233 }
[9538]234
[8961]235/*
236 vector<t_pppSatObs*>::iterator it = obsVector.begin();
237 while (it != obsVector.end()) {
238 t_pppSatObs* satObs = *it;
239 satObs->printObsMinusComputed();
240 it++;
241 }
242*/
[8905]243 return pseudoObsIono;
244}
245
[7237]246// Compute the Bancroft position, check for blunders
247//////////////////////////////////////////////////////////////////////////////
[7271]248t_irc t_pppClient::cmpBancroft(const bncTime& epoTime,
[7237]249 vector<t_pppSatObs*>& obsVector,
250 ColumnVector& xyzc, bool print) {
251
252 t_lc::type tLC = t_lc::dummy;
253
254 while (true) {
255 Matrix BB(obsVector.size(), 4);
256 int iObs = -1;
257 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
258 const t_pppSatObs* satObs = obsVector.at(ii);
[8034]259 if (tLC == t_lc::dummy) {
260 if (satObs->isValid(t_lc::cIF)) {
261 tLC = t_lc::cIF;
[7237]262 }
[8034]263 else if (satObs->isValid(t_lc::c1)) {
264 tLC = t_lc::c1;
[7237]265 }
[8445]266 else if (satObs->isValid(t_lc::c2)) {
[8034]267 tLC = t_lc::c2;
268 }
[7237]269 }
[8912]270 if ( satObs->isValid(tLC) && (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle) ) {
[8034]271 ++iObs;
272 BB[iObs][0] = satObs->xc()[0];
273 BB[iObs][1] = satObs->xc()[1];
274 BB[iObs][2] = satObs->xc()[2];
275 BB[iObs][3] = satObs->obsValue(tLC) - satObs->cmpValueForBanc(tLC);
276 }
[7237]277 }
[8912]278 if (iObs + 1 < _opt->_minObs) {
[9545]279 LOG << "t_pppClient::cmpBancroft not enough observations: " << iObs + 1 << endl;
[7237]280 return failure;
281 }
282 BB = BB.Rows(1,iObs+1);
283 bancroft(BB, xyzc);
284
285 xyzc[3] /= t_CST::c;
286
287 // Check Blunders
288 // --------------
289 const double BLUNDER = 100.0;
290 double maxRes = 0.0;
291 unsigned maxResIndex = 0;
292 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
293 const t_pppSatObs* satObs = obsVector.at(ii);
[8905]294 if (satObs->isValid() &&
295 satObs->prn().system() == 'G' &&
[8912]296 (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle) ) {
[7237]297 ColumnVector rr = satObs->xc().Rows(1,3) - xyzc.Rows(1,3);
[8905]298 double res = rr.NormFrobenius() - satObs->obsValue(tLC)
[8453]299 - (satObs->xc()[3] - xyzc[3]) * t_CST::c;
300 if (std::isnan(res) || fabs(res) > maxRes) {
301 std::isnan(res) ?
302 maxRes = res :
[7237]303 maxRes = fabs(res);
304 maxResIndex = ii;
305 }
306 }
307 }
[8453]308 if (!std::isnan(maxRes) && maxRes < BLUNDER) {
[9386]309 if (print && _numEpoProcessing == 1) {
[7237]310 LOG.setf(ios::fixed);
311 LOG << string(epoTime) << " BANCROFT:" << ' '
312 << setw(14) << setprecision(3) << xyzc[0] << ' '
313 << setw(14) << setprecision(3) << xyzc[1] << ' '
314 << setw(14) << setprecision(3) << xyzc[2] << ' '
315 << setw(14) << setprecision(3) << xyzc[3] * t_CST::c << endl << endl;
316 }
317 break;
318 }
319 else {
320 t_pppSatObs* satObs = obsVector.at(maxResIndex);
321 LOG << "t_pppClient::cmpBancroft outlier " << satObs->prn().toString()
322 << " " << maxRes << endl;
323 delete satObs;
324 obsVector.erase(obsVector.begin() + maxResIndex);
325 }
326 }
327
328 return success;
329}
330
331// Compute A Priori GPS-Glonass Offset
332//////////////////////////////////////////////////////////////////////////////
[9288]333double t_pppClient::cmpOffGR(vector<t_pppSatObs*>& obsVector) {
[7237]334
335 t_lc::type tLC = t_lc::dummy;
[9288]336 double offGR = 0.0;
[7237]337
[8912]338 if (_opt->useSystem('R')) {
[7237]339 while (obsVector.size() > 0) {
[9288]340 offGR = 0.0;
[7237]341 double maxRes = 0.0;
342 int maxResIndex = -1;
343 t_prn maxResPrn;
344 unsigned nObs = 0;
345 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
[7888]346 const t_pppSatObs* satObs = obsVector.at(ii);
[7237]347 if (satObs->prn().system() == 'R') {
348 if (tLC == t_lc::dummy) {
349 tLC = satObs->isValid(t_lc::cIF) ? t_lc::cIF : t_lc::c1;
350 }
[8912]351 if (satObs->isValid(tLC) && (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle)) {
[7237]352 double ll = satObs->obsValue(tLC) - satObs->cmpValue(tLC);
353 ++nObs;
[9288]354 offGR += ll;
[7237]355 if (fabs(ll) > fabs(maxRes)) {
356 maxRes = ll;
357 maxResIndex = ii;
358 maxResPrn = satObs->prn();
359 }
360 }
361 }
362 }
363
364 if (nObs > 0) {
[9288]365 offGR = offGR / nObs;
[7237]366 }
367 else {
[9288]368 offGR = 0.0;
[7237]369 }
[9386]370 if (fabs(maxRes) > OPT->_aprSigOGC) {
[9288]371 LOG << "t_pppClient::cmpOffGR outlier " << maxResPrn.toString() << " " << maxRes << endl;
[7904]372 delete obsVector.at(maxResIndex);
[7237]373 obsVector.erase(obsVector.begin() + maxResIndex);
374 }
375 else {
376 break;
377 }
378 }
379 }
[9288]380 return offGR;
[7237]381}
382
[9288]383// Compute A Priori GPS-Galileo Offset
384//////////////////////////////////////////////////////////////////////////////
385double t_pppClient::cmpOffGE(vector<t_pppSatObs*>& obsVector) {
386
387 t_lc::type tLC = t_lc::dummy;
388 double offGE = 0.0;
389
390 if (_opt->useSystem('E')) {
391 while (obsVector.size() > 0) {
392 offGE = 0.0;
393 double maxRes = 0.0;
394 int maxResIndex = -1;
395 t_prn maxResPrn;
396 unsigned nObs = 0;
397 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
398 const t_pppSatObs* satObs = obsVector.at(ii);
399 if (satObs->prn().system() == 'E') {
400 if (tLC == t_lc::dummy) {
401 tLC = satObs->isValid(t_lc::cIF) ? t_lc::cIF : t_lc::c1;
402 }
403 if (satObs->isValid(tLC) && (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle)) {
404 double ll = satObs->obsValue(tLC) - satObs->cmpValue(tLC);
405 ++nObs;
406 offGE += ll;
407 if (fabs(ll) > fabs(maxRes)) {
408 maxRes = ll;
409 maxResIndex = ii;
410 maxResPrn = satObs->prn();
411 }
412 }
413 }
414 }
415
416 if (nObs > 0) {
417 offGE = offGE / nObs;
418 }
419 else {
420 offGE = 0.0;
421 }
422
[9386]423 if (fabs(maxRes) > OPT->_aprSigOGE) {
[9288]424 LOG << "t_pppClient::cmpOffGE outlier " << maxResPrn.toString() << " " << maxRes << endl;
425 delete obsVector.at(maxResIndex);
426 obsVector.erase(obsVector.begin() + maxResIndex);
427 }
428 else {
429 break;
430 }
431 }
432 }
433 return offGE;
434}
435
[8993]436// Compute A Priori GPS-BDS Offset
437//////////////////////////////////////////////////////////////////////////////
[9288]438double t_pppClient::cmpOffGC(vector<t_pppSatObs*>& obsVector) {
[8993]439
440 t_lc::type tLC = t_lc::dummy;
[9288]441 double offGC = 0.0;
[8993]442
443 if (_opt->useSystem('C')) {
444 while (obsVector.size() > 0) {
[9288]445 offGC = 0.0;
[8993]446 double maxRes = 0.0;
447 int maxResIndex = -1;
448 t_prn maxResPrn;
449 unsigned nObs = 0;
450 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
451 const t_pppSatObs* satObs = obsVector.at(ii);
452 if (satObs->prn().system() == 'C') {
453 if (tLC == t_lc::dummy) {
454 tLC = satObs->isValid(t_lc::cIF) ? t_lc::cIF : t_lc::c1;
455 }
456 if (satObs->isValid(tLC) && (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle)) {
457 double ll = satObs->obsValue(tLC) - satObs->cmpValue(tLC);
458 ++nObs;
[9288]459 offGC += ll;
[8993]460 if (fabs(ll) > fabs(maxRes)) {
461 maxRes = ll;
462 maxResIndex = ii;
463 maxResPrn = satObs->prn();
464 }
465 }
466 }
467 }
468
469 if (nObs > 0) {
[9288]470 offGC = offGC / nObs;
[8993]471 }
472 else {
[9288]473 offGC = 0.0;
[8993]474 }
475
[9386]476 if (fabs(maxRes) > OPT->_aprSigOGC) {
[9288]477 LOG << "t_pppClient::cmpOffGC outlier " << maxResPrn.toString() << " " << maxRes << endl;
[8993]478 delete obsVector.at(maxResIndex);
479 obsVector.erase(obsVector.begin() + maxResIndex);
480 }
481 else {
482 break;
483 }
484 }
485 }
[9288]486 return offGC;
[8993]487}
488
[7271]489//
[7237]490//////////////////////////////////////////////////////////////////////////////
491void t_pppClient::initOutput(t_output* output) {
492 _output = output;
493 _output->_numSat = 0;
[7927]494 _output->_hDop = 0.0;
[7237]495 _output->_error = false;
496}
497
[7271]498//
[7237]499//////////////////////////////////////////////////////////////////////////////
500void t_pppClient::clearObs() {
501 for (unsigned ii = 0; ii < _obsRover.size(); ii++) {
502 delete _obsRover.at(ii);
503 }
504 _obsRover.clear();
505}
506
[7271]507//
[7237]508//////////////////////////////////////////////////////////////////////////////
[9548]509void t_pppClient::finish(t_irc irc, int ind) { //LOG << "t_pppClient::finish(" << irc << ") " << ind << endl;
[7237]510
511 clearObs();
512
513 _output->_epoTime = _epoTimeRover;
514
515 if (irc == success) {
516 _output->_xyzRover[0] = _staRover->xyzApr()[0] + _filter->x()[0];
517 _output->_xyzRover[1] = _staRover->xyzApr()[1] + _filter->x()[1];
518 _output->_xyzRover[2] = _staRover->xyzApr()[2] + _filter->x()[2];
519
520 xyz2neu(_staRover->ellApr().data(), _filter->x().data(), _output->_neu);
521
522 copy(&_filter->Q().data()[0], &_filter->Q().data()[6], _output->_covMatrix);
523
524 _output->_trp0 = t_tropo::delay_saast(_staRover->xyzApr(), M_PI/2.0);
525 _output->_trp = _filter->trp();
526 _output->_trpStdev = _filter->trpStdev();
527
[9386]528 _output->_numSat = _filter->numSat();
529 _output->_hDop = _filter->HDOP();
[7237]530 _output->_error = false;
531 }
532 else {
533 _output->_error = true;
534 }
535 _output->_log = _log->str();
536 delete _log; _log = new ostringstream();
[9545]537
538 return;
[7237]539}
540
[7271]541//
[7237]542//////////////////////////////////////////////////////////////////////////////
543t_irc t_pppClient::cmpModel(t_pppStation* station, const ColumnVector& xyzc,
544 vector<t_pppSatObs*>& obsVector) {
545 bncTime time;
546 time = _epoTimeRover;
[8912]547 station->setName(_opt->_roverName);
548 station->setAntName(_opt->_antNameRover);
[8905]549 station->setEpochTime(time);
[8912]550 if (_opt->xyzAprRoverSet()) {
551 station->setXyzApr(_opt->_xyzAprRover);
[7237]552 }
553 else {
554 station->setXyzApr(xyzc.Rows(1,3));
555 }
[8912]556 station->setNeuEcc(_opt->_neuEccRover);
[7237]557
558 // Receiver Clock
559 // --------------
560 station->setDClk(xyzc[3]);
561
562 // Tides
563 // -----
[8905]564 station->setTideDsplEarth(_tides->earth(time, station->xyzApr()));
565 station->setTideDsplOcean(_tides->ocean(time, station->xyzApr(), station->name()));
[7271]566
[7237]567 // Observation model
568 // -----------------
569 vector<t_pppSatObs*>::iterator it = obsVector.begin();
570 while (it != obsVector.end()) {
571 t_pppSatObs* satObs = *it;
[7254]572 t_irc modelSetup;
[7237]573 if (satObs->isValid()) {
[7254]574 modelSetup = satObs->cmpModel(station);
[7237]575 }
[7254]576 if (satObs->isValid() &&
[8912]577 satObs->eleSat() >= _opt->_minEle &&
[7254]578 modelSetup == success) {
[7237]579 ++it;
580 }
581 else {
582 delete satObs;
583 it = obsVector.erase(it);
584 }
585 }
586
587 return success;
588}
589
[7271]590//
[7237]591//////////////////////////////////////////////////////////////////////////////
592void t_pppClient::processEpoch(const vector<t_satObs*>& satObs, t_output* output) {
593
594 try {
595 initOutput(output);
[8912]596 bool epochReProcessing = false;
[9386]597 _numEpoProcessing = 0;
[9419]598 _historicalRefSats.clear();
599
[8905]600 do {
[9386]601 _numEpoProcessing++;
[9419]602#ifdef BNC_DEBUG_PPP
603 LOG << "_numEpoProcessing " << _numEpoProcessing << endl;
604#endif
[9386]605 if (_obsPool->refSatChanged()) {
[9508]606 if(_filter->datumTransformation(_refSatMap) != success) {
607 LOG << "t_pppFilter::datumTransformation() != success" << endl;
[9548]608 reset();
[9545]609 return finish(failure,1);
[9386]610 }
611 else {
[9508]612 LOG << "t_pppFilter::datumTransformation() == success" << endl;
[9527]613 _filter->rememberState(1);
[9386]614 }
[8956]615 }
[8905]616 // Prepare Observations of the Rover
617 // ---------------------------------
618 if (prepareObs(satObs, _obsRover, _epoTimeRover) != success) {
[9545]619 return finish(failure,2);
[7237]620 }
[8905]621
[9386]622 if (_numEpoProcessing == 1) {
623 LOG << "\nPPP of Epoch ";
624 if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);
625 LOG << "\n---------------------------------------------------------------\n";
626 }
627
[8905]628 for (int iter = 1; iter <= 2; iter++) {
629 ColumnVector xyzc(4); xyzc = 0.0;
630 bool print = (iter == 2);
631 if (cmpBancroft(_epoTimeRover, _obsRover, xyzc, print) != success) {
[9545]632 return finish(failure,3);
[8905]633 }
634 if (cmpModel(_staRover, xyzc, _obsRover) != success) {
[9545]635 return finish(failure,4);
[8905]636 }
637 }
638
[9545]639 if (int(_obsRover.size()) < _opt->_minObs) {
640 LOG << "t_pppClient::processEpoch not enough observations" << endl;
641 return finish(failure,5);
642 }
643
[8912]644 if (_opt->_refSatRequired) {
[9386]645 if (handleRefSatellites(_obsRover) != success) {
[9545]646 return finish(failure,6);
[8905]647 }
[9508]648 if (_obsPool->refSatChanged()) {
649 LOG << "t_pppFilter: refSatChanged()" << endl;
[9527]650 epochReProcessing = true;
651 continue;
[9386]652 }
[8905]653 }
[7237]654
[9386]655 _offGR = cmpOffGR(_obsRover);
656 _offGE = cmpOffGE(_obsRover);
657 _offGC = cmpOffGC(_obsRover);
[8956]658
659 // Prepare Pseudo Observations of the Rover
660 // ----------------------------------------
661 _pseudoObsIono = preparePseudoObs(_obsRover);
662
[8905]663 // Store last epoch of data
664 // ------------------------
[9508]665 _obsPool->putEpoch(_epoTimeRover, _obsRover, _pseudoObsIono, _refSatMap);
[7904]666
[8905]667 // Process Epoch in Filter
668 // -----------------------
[9386]669 if (_filter->processEpoch() != success) {
[9545]670 LOG << "filter->processEpoch() != success" << endl;
[9551]671 if (_filter->ageOfLastSolutionOK() >= 120) {
672 reset();
673 }
[9545]674 return finish(failure,7);
[8905]675 }
[8912]676
677 // Epoch re-processing required?
678 // -----------------------------
[9395]679 if (_obsPool->refSatChangeRequired() && //SLIP
680 _opt->_obsModelType != t_pppOptions::UncombPPP) {
[9545]681 LOG << "pppClient: _obsPool->refSatChangeRequired() " << endl;
[8912]682 epochReProcessing = true;
[8956]683 _obsPool->deleteLastEpoch();
[9527]684 _filter->restoreState(0);
[9386]685 setHistoricalRefSats();
[8912]686 }
687 else {
688 epochReProcessing = false;
[9537]689 if (OPT->_obsModelType == OPT->DCMcodeBias ||
690 OPT->_obsModelType == OPT->DCMphaseBias) {
691 _filter->rememberState(0);
692 }
[8912]693 }
694 } while (epochReProcessing);
[9431]695
[7237]696 }
697 catch (Exception& exc) {
698 LOG << exc.what() << endl;
[9545]699 return finish(failure,8);
[7237]700 }
701 catch (t_except msg) {
702 LOG << msg.what() << endl;
[9545]703 return finish(failure,9);
[7237]704 }
705 catch (const char* msg) {
706 LOG << msg << endl;
[9545]707 return finish(failure,10);
[7237]708 }
709 catch (...) {
710 LOG << "unknown exception" << endl;
[9545]711 return finish(failure,11);
[7237]712 }
[9545]713 return finish(success,12);
[7237]714}
715
[7271]716//
[7237]717////////////////////////////////////////////////////////////////////////////
718double lorentz(const ColumnVector& aa, const ColumnVector& bb) {
719 return aa[0]*bb[0] + aa[1]*bb[1] + aa[2]*bb[2] - aa[3]*bb[3];
720}
721
[7271]722//
[7237]723////////////////////////////////////////////////////////////////////////////
724void t_pppClient::bancroft(const Matrix& BBpass, ColumnVector& pos) {
725
726 if (pos.Nrows() != 4) {
727 pos.ReSize(4);
728 }
729 pos = 0.0;
730
731 for (int iter = 1; iter <= 2; iter++) {
732 Matrix BB = BBpass;
733 int mm = BB.Nrows();
734 for (int ii = 1; ii <= mm; ii++) {
735 double xx = BB(ii,1);
736 double yy = BB(ii,2);
737 double traveltime = 0.072;
738 if (iter > 1) {
739 double zz = BB(ii,3);
[7271]740 double rho = sqrt( (xx-pos(1)) * (xx-pos(1)) +
741 (yy-pos(2)) * (yy-pos(2)) +
[7237]742 (zz-pos(3)) * (zz-pos(3)) );
743 traveltime = rho / t_CST::c;
744 }
745 double angle = traveltime * t_CST::omega;
746 double cosa = cos(angle);
747 double sina = sin(angle);
748 BB(ii,1) = cosa * xx + sina * yy;
749 BB(ii,2) = -sina * xx + cosa * yy;
750 }
[7271]751
[7237]752 Matrix BBB;
753 if (mm > 4) {
754 SymmetricMatrix hlp; hlp << BB.t() * BB;
755 BBB = hlp.i() * BB.t();
756 }
757 else {
758 BBB = BB.i();
759 }
760 ColumnVector ee(mm); ee = 1.0;
761 ColumnVector alpha(mm); alpha = 0.0;
762 for (int ii = 1; ii <= mm; ii++) {
[7271]763 alpha(ii) = lorentz(BB.Row(ii).t(),BB.Row(ii).t())/2.0;
[7237]764 }
765 ColumnVector BBBe = BBB * ee;
766 ColumnVector BBBalpha = BBB * alpha;
767 double aa = lorentz(BBBe, BBBe);
768 double bb = lorentz(BBBe, BBBalpha)-1;
769 double cc = lorentz(BBBalpha, BBBalpha);
770 double root = sqrt(bb*bb-aa*cc);
771
[7271]772 Matrix hlpPos(4,2);
[7237]773 hlpPos.Column(1) = (-bb-root)/aa * BBBe + BBBalpha;
774 hlpPos.Column(2) = (-bb+root)/aa * BBBe + BBBalpha;
775
776 ColumnVector omc(2);
777 for (int pp = 1; pp <= 2; pp++) {
778 hlpPos(4,pp) = -hlpPos(4,pp);
[7271]779 omc(pp) = BB(1,4) -
[7237]780 sqrt( (BB(1,1)-hlpPos(1,pp)) * (BB(1,1)-hlpPos(1,pp)) +
781 (BB(1,2)-hlpPos(2,pp)) * (BB(1,2)-hlpPos(2,pp)) +
[7271]782 (BB(1,3)-hlpPos(3,pp)) * (BB(1,3)-hlpPos(3,pp)) ) -
[7237]783 hlpPos(4,pp);
784 }
785 if ( fabs(omc(1)) > fabs(omc(2)) ) {
786 pos = hlpPos.Column(2);
787 }
788 else {
789 pos = hlpPos.Column(1);
790 }
791 }
792}
793
[7972]794//
795//////////////////////////////////////////////////////////////////////////////
[8956]796void t_pppClient::setRefSatellites(std::vector<t_pppSatObs*>& obsVector) {
797 // reference satellite definition per system
798 for (unsigned iSys = 0; iSys < _opt->systems().size(); iSys++) {
[9490]799 t_irc refSatReDefinition = success;
[9386]800 char sys = _opt->systems()[iSys];
[8956]801 bool refSatDefined = false;
[9508]802 t_pppRefSat* refSat = _refSatMap[sys];
[8956]803 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
804 t_pppSatObs* satObs = obsVector.at(ii);
[9386]805 if (satObs->eleSat() < _opt->_minEle) {
806 continue;
807 }
[8956]808 // reference satellite is unchanged
[9395]809 // ================================
[9508]810 if ( !_obsPool->refSatChangeRequired(sys) && refSat->prn() == satObs->prn()) {
[8956]811 refSatDefined = true;
812 obsVector[ii]->setAsReference();
813 }
814 // reference satellite has changed
[9395]815 // ===============================
816 else if ( _obsPool->refSatChangeRequired(sys) && refSat->prn() != satObs->prn()) {
[9386]817 if (satObs->prn().system() == sys) {
[9395]818 if (!_historicalRefSats[sys].contains(satObs->prn())) {
819 refSatDefined = true;
820 obsVector[ii]->setAsReference();
821 refSat->setPrn(satObs->prn());
822 }
823 else if ( _historicalRefSats[sys].contains(satObs->prn())) {
824 refSatReDefinition = failure;
825 }
[8956]826 }
827 }
828 if (refSatDefined) {
829 if (OPT->_pseudoObsIono) {
830 refSat->setStecValue(satObs->getIonoCodeDelay(t_frequency::G1));
831 }
832 break;
833 }
834 }
[9490]835
[9398]836 // all available satellites were already tried to use
[9395]837 if ((!refSatDefined) && (refSatReDefinition == failure)) {
838 refSat->setPrn(t_prn(sys, 99));
[9398]839 _obsPool->setRefSatChangeRequired(sys, false);
840 return;
[9395]841 }
842
[8956]843 // reference satellite has to be initialized
[9395]844 // =========================================
[8956]845 if (!refSatDefined) {
846 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
847 t_pppSatObs* satObs = obsVector.at(ii);
848 if (satObs->eleSat() < _opt->_minEle) {
849 continue;
850 }
[9395]851 if (satObs->prn().system() == sys) {
[8956]852 obsVector[ii]->setAsReference();
853 refSat->setPrn(satObs->prn());
854 if (OPT->_pseudoObsIono) {
855 refSat->setStecValue(satObs->getIonoCodeDelay(t_frequency::G1));
856 }
857 refSatDefined = true;
858 break;
859 }
860 }
861 }
[9395]862
[9398]863 // no observations for that system
864 // ===============================
865 if (!refSatDefined) {
[9386]866 refSat->setPrn(t_prn());
867 }
[9398]868 _obsPool->setRefSatChangeRequired(sys, false); // done or impossible
[8956]869 }
[9398]870
871 return;
[9386]872}
[8956]873
[9386]874//
875//////////////////////////////////////////////////////////////////////////////
876t_irc t_pppClient::handleRefSatellites(std::vector<t_pppSatObs*>& obsVector) {
877
878 // set refSats in current epoch
879 // ============================
880 setRefSatellites(obsVector); // current epoch
881 LOG.setf(ios::fixed);
[9508]882 t_pppObsPool::t_epoch* epoch = _obsPool->lastEpoch();
883 const QMap<char, t_pppRefSat*>& refSatMapLastEpoch = epoch->refSatMap();
[9527]884
[9508]885 QMapIterator<char, t_pppRefSat*> it(_refSatMap);
[9386]886 while (it.hasNext()) {
887 it.next();
888 char sys = it.key();
889 t_prn prn = it.value()->prn();
[9508]890 t_prn refSatLastEpochPrn = t_prn();
891 if (epoch) {
892 refSatLastEpochPrn = refSatMapLastEpoch[sys]->prn();
893 }
[9395]894 if (prn.number() == 0) { // no obs for that system available
895 continue;
896 }
897 else if (prn.number() == 99) { // refSat re-definition not possible
[9490]898 LOG << " => refSat re-definition impossible: " << sys << endl;
[9386]899 return failure;
900 }
[9432]901 QString str;
[9508]902 if (prn == refSatLastEpochPrn || refSatLastEpochPrn == t_prn() ) {
[9386]903 _obsPool->setRefSatChanged(sys, false);
904 str = " SET ";
905 }
906 else {
907 _obsPool->setRefSatChanged(sys, true);
908 str = " RESET ";
909 }
910 LOG << string(_epoTimeRover) << str.toStdString() << " REFSAT " << sys << ": " << prn.toString() << endl;
911 }
912 return success;
[8956]913}
914
[9386]915void t_pppClient::setHistoricalRefSats() {
[9508]916 QMapIterator<char, t_pppRefSat*> it(_refSatMap);
[9386]917 while (it.hasNext()) {
918 it.next();
919 t_prn prn = it.value()->prn();
920 char sys = prn.system();
[9548]921 if (_obsPool->refSatChangeRequired(sys)) {
[9386]922 _historicalRefSats[sys].append(prn);
923 }
[9508]924 }
925}
[9386]926
[8956]927//
928//////////////////////////////////////////////////////////////////////////////
[9548]929void t_pppClient::reset() {LOG << "t_pppClient::reset()" << endl;
[7972]930
931 // to delete old orbit and clock corrections
932 delete _ephPool;
933 _ephPool = new t_pppEphPool();
934
935 // to delete old code biases
936 delete _obsPool;
937 _obsPool = new t_pppObsPool();
[8905]938
939 // to delete all parameters
940 delete _filter;
941 _filter = new t_pppFilter(_obsPool);
942
[7996]943}
Note: See TracBrowser for help on using the repository browser.