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