source: ntrip/tags/BNC_2.13.0/src/combination/bnccomb.cpp

Last change on this file was 10274, checked in by stuerze, 10 months ago

minor changes

File size: 46.2 KB
RevLine 
[2898]1/* -------------------------------------------------------------------------
2 * BKG NTRIP Client
3 * -------------------------------------------------------------------------
4 *
5 * Class: bncComb
6 *
7 * Purpose: Combinations of Orbit/Clock Corrections
8 *
9 * Author: L. Mervart
10 *
11 * Created: 22-Jan-2011
12 *
[7297]13 * Changes:
[2898]14 *
15 * -----------------------------------------------------------------------*/
16
[2933]17#include <newmatio.h>
[2921]18#include <iomanip>
[3214]19#include <sstream>
[9635]20#include <map>
[2898]21
22#include "bnccomb.h"
[9676]23#include <combination/bncbiassnx.h>
[5070]24#include "bnccore.h"
[3201]25#include "upload/bncrtnetdecoder.h"
[2910]26#include "bncsettings.h"
[2988]27#include "bncutils.h"
[3052]28#include "bncantex.h"
[5742]29#include "t_prn.h"
[2898]30
[3455]31const double sig0_offAC = 1000.0;
32const double sig0_offACSat = 100.0;
[3468]33const double sigP_offACSat = 0.01;
[3455]34const double sig0_clkSat = 100.0;
35
36const double sigObs = 0.05;
37
38using namespace std;
39
[2898]40// Constructor
41////////////////////////////////////////////////////////////////////////////
[6155]42bncComb::cmbParam::cmbParam(parType type_, int index_, const QString& ac_, const QString& prn_) {
[3032]43
[3433]44 type = type_;
45 index = index_;
46 AC = ac_;
47 prn = prn_;
48 xx = 0.0;
[3455]49 eph = 0;
[3429]50
[9258]51 if (type == offACgnss) {
[3455]52 epoSpec = true;
53 sig0 = sig0_offAC;
54 sigP = sig0;
[3429]55 }
56 else if (type == offACSat) {
[3455]57 epoSpec = false;
58 sig0 = sig0_offACSat;
59 sigP = sigP_offACSat;
[3429]60 }
61 else if (type == clkSat) {
[3455]62 epoSpec = true;
63 sig0 = sig0_clkSat;
64 sigP = sig0;
[3429]65 }
[2933]66}
67
68// Destructor
69////////////////////////////////////////////////////////////////////////////
[6155]70bncComb::cmbParam::~cmbParam() {
[2933]71}
72
73// Partial
74////////////////////////////////////////////////////////////////////////////
[9258]75double bncComb::cmbParam::partial(char sys, const QString& AC_, const QString& prn_) {
[7297]76
[9258]77 if (type == offACgnss) {
78 if (AC == AC_ && prn_[0].toLatin1() == sys) {
[2934]79 return 1.0;
80 }
81 }
[3429]82 else if (type == offACSat) {
83 if (AC == AC_ && prn == prn_) {
[2933]84 return 1.0;
85 }
86 }
[3429]87 else if (type == clkSat) {
88 if (prn == prn_) {
[2933]89 return 1.0;
90 }
91 }
92
93 return 0.0;
94}
95
[7297]96//
[2990]97////////////////////////////////////////////////////////////////////////////
[9258]98QString bncComb::cmbParam::toString(char sys) const {
[2933]99
[2990]100 QString outStr;
[7297]101
[9258]102 if (type == offACgnss) {
[9262]103 outStr = "AC Offset " + AC + " " + sys + " ";
[2990]104 }
[3429]105 else if (type == offACSat) {
[7008]106 outStr = "Sat Offset " + AC + " " + prn.mid(0,3);
[2990]107 }
[3429]108 else if (type == clkSat) {
[7008]109 outStr = "Clk Corr " + prn.mid(0,3);
[2990]110 }
[2933]111
[2990]112 return outStr;
113}
114
[10040]115// Singleton: definition class variable
[7299]116////////////////////////////////////////////////////////////////////////////
[10042]117bncComb* bncComb::instance = nullptr;
[7299]118
[10040]119
[2933]120// Constructor
121////////////////////////////////////////////////////////////////////////////
[10040]122bncComb::bncComb() : _ephUser(true) {
[2910]123
124 bncSettings settings;
125
[10227]126 _running = true;
127
[7297]128 QStringList cmbStreams = settings.value("cmbStreams").toStringList();
[2918]129
[4183]130 _cmbSampl = settings.value("cmbSampl").toInt();
131 if (_cmbSampl <= 0) {
[9676]132 _cmbSampl = 5;
[4183]133 }
[9292]134 _useGps = (Qt::CheckState(settings.value("cmbGps").toInt()) == Qt::Checked) ? true : false;
135 if (_useGps) {
136 _cmbSysPrn['G'] = t_prn::MAXPRN_GPS;
137 _masterMissingEpochs['G'] = 0;
138 }
139 _useGlo = (Qt::CheckState(settings.value("cmbGlo").toInt()) == Qt::Checked) ? true : false;
140 if (_useGlo) {
141 _cmbSysPrn['R'] = t_prn::MAXPRN_GLONASS;
142 _masterMissingEpochs['R'] = 0;
143 }
144 _useGal = (Qt::CheckState(settings.value("cmbGal").toInt()) == Qt::Checked) ? true : false;
145 if (_useGal) {
146 _cmbSysPrn['E'] = t_prn::MAXPRN_GALILEO;
147 _masterMissingEpochs['E'] = 0;
148 }
149 _useBds = (Qt::CheckState(settings.value("cmbBds").toInt()) == Qt::Checked) ? true : false;
150 if (_useBds) {
151 _cmbSysPrn['C'] = t_prn::MAXPRN_BDS;
152 _masterMissingEpochs['C'] = 0;
153 }
154 _useQzss = (Qt::CheckState(settings.value("cmbQzss").toInt()) == Qt::Checked) ? true : false;
155 if (_useQzss) {
156 _cmbSysPrn['J'] = t_prn::MAXPRN_QZSS;
157 _masterMissingEpochs['J'] = 0;
158 }
159 _useSbas = (Qt::CheckState(settings.value("cmbSbas").toInt()) == Qt::Checked) ? true : false;
160 if (_useSbas) {
161 _cmbSysPrn['S'] = t_prn::MAXPRN_SBAS;
162 _masterMissingEpochs['S'] = 0;
163 }
164 _useIrnss = (Qt::CheckState(settings.value("cmbIrnss").toInt()) == Qt::Checked) ? true : false;
165 if (_useIrnss) {
166 _cmbSysPrn['I'] = t_prn::MAXPRN_IRNSS;
167 _masterMissingEpochs['I'] = 0;
168 }
[4183]169
[7297]170 if (cmbStreams.size() >= 1 && !cmbStreams[0].isEmpty()) {
171 QListIterator<QString> it(cmbStreams);
[2910]172 while (it.hasNext()) {
173 QStringList hlp = it.next().split(" ");
[2918]174 cmbAC* newAC = new cmbAC();
[9821]175 newAC->mountPoint = hlp[0];
176 newAC->name = hlp[1];
177 newAC->weightFactor = hlp[2].toDouble();
[10221]178 newAC->isAPC = bool(newAC->mountPoint.mid(0,4) == "SSRA");
[9258]179 QMapIterator<char, unsigned> itSys(_cmbSysPrn);
180 // init
181 while (itSys.hasNext()) {
182 itSys.next();
183 char sys = itSys.key();
[10116]184 if (!_masterOrbitAC.contains(sys)) {
[9258]185 _masterOrbitAC[sys] = newAC->name;
[10116]186 _masterIsAPC[sys] = newAC->isAPC;
[9258]187 }
[3453]188 }
[3429]189 _ACs.append(newAC);
[2910]190 }
191 }
[2927]192
[9025]193 QString ssrFormat;
[9258]194 _ssrCorr = 0;
[9025]195 QListIterator<QString> it(settings.value("uploadMountpointsOut").toStringList());
196 while (it.hasNext()) {
197 QStringList hlp = it.next().split(",");
198 if (hlp.size() > 7) {
199 ssrFormat = hlp[7];
200 }
201 }
202 if (ssrFormat == "IGS-SSR") {
203 _ssrCorr = new SsrCorrIgs();
204 }
205 else if (ssrFormat == "RTCM-SSR") {
206 _ssrCorr = new SsrCorrRtcm();
207 }
[9258]208 else { // default
209 _ssrCorr = new SsrCorrIgs();
210 }
[9025]211
[3211]212 _rtnetDecoder = 0;
[3201]213
[9819]214 connect(this, SIGNAL(newMessage(QByteArray,bool)), BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
215 connect(BNC_CORE, SIGNAL(providerIDChanged(QString)), this, SLOT(slotProviderIDChanged(QString)));
216 connect(BNC_CORE, SIGNAL(newOrbCorrections(QList<t_orbCorr>)), this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)));
217 connect(BNC_CORE, SIGNAL(newClkCorrections(QList<t_clkCorr>)), this, SLOT(slotNewClkCorrections(QList<t_clkCorr>)));
218 connect(BNC_CORE, SIGNAL(newCodeBiases(QList<t_satCodeBias>)), this, SLOT(slotNewCodeBiases(QList<t_satCodeBias>)));
[2933]219
[3470]220 // Combination Method
221 // ------------------
[3481]222 if (settings.value("cmbMethod").toString() == "Single-Epoch") {
223 _method = singleEpoch;
[3470]224 }
225 else {
[3481]226 _method = filter;
[3470]227 }
[3032]228
229 // Initialize Parameters (model: Clk_Corr = AC_Offset + Sat_Offset + Clk)
230 // ----------------------------------------------------------------------
[3470]231 if (_method == filter) {
[9258]232 // SYSTEM
233 QMapIterator<char, unsigned> itSys(_cmbSysPrn);
234 while (itSys.hasNext()) {
235 itSys.next();
236 int nextPar = 0;
237 char sys = itSys.key();
238 unsigned maxPrn = itSys.value();
239 unsigned flag = 0;
240 if (sys == 'E') {
241 flag = 1;
[3470]242 }
[9258]243 // AC
244 QListIterator<cmbAC*> itAc(_ACs);
245 while (itAc.hasNext()) {
246 cmbAC* AC = itAc.next();
247 _params[sys].push_back(new cmbParam(cmbParam::offACgnss, ++nextPar, AC->name, ""));
248 for (unsigned iGnss = 1; iGnss <= maxPrn; iGnss++) {
249 QString prn = QString("%1%2_%3").arg(sys).arg(iGnss, 2, 10, QChar('0')).arg(flag);
250 _params[sys].push_back(new cmbParam(cmbParam::offACSat, ++nextPar, AC->name, prn));
[3483]251 }
252 }
[9258]253 for (unsigned iGnss = 1; iGnss <= maxPrn; iGnss++) {
254 QString prn = QString("%1%2_%3").arg(sys).arg(iGnss, 2, 10, QChar('0')).arg(flag);
255 _params[sys].push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
[3483]256 }
[9258]257 // Initialize Variance-Covariance Matrix
258 // -------------------------------------
259 _QQ[sys].ReSize(_params[sys].size());
260 _QQ[sys] = 0.0;
261 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
262 cmbParam* pp = _params[sys][iPar-1];
263 _QQ[sys](iPar,iPar) = pp->sig0 * pp->sig0;
264 }
[3483]265 }
[2991]266 }
[2933]267
[3052]268 // ANTEX File
269 // ----------
270 _antex = 0;
[6667]271 QString antexFileName = settings.value("uploadAntexFile").toString();
[3052]272 if (!antexFileName.isEmpty()) {
273 _antex = new bncAntex();
274 if (_antex->readFile(antexFileName) != success) {
[9695]275 emit newMessage("bncCmb: wrong ANTEX file", true);
[3052]276 delete _antex;
277 _antex = 0;
278 }
279 }
[3138]280
[9676]281
282 // Bias SINEX File
283 // ---------------
284 _bsx = 0;
285 QString bsxFileName = settings.value("cmbBsxFile").toString();
286 if (!bsxFileName.isEmpty()) {
287 _bsx = new bncBiasSnx();
288 if (_bsx->readFile(bsxFileName) != success) {
[9695]289 emit newMessage("bncComb: wrong Bias SINEX file", true);
[9676]290 delete _bsx;
291 _bsx = 0;
292 }
293 }
294 if (_bsx) {
[10227]295 _ms = 3.0 * 3600 * 1000.0;
[9695]296 QTimer::singleShot(_ms, this, SLOT(slotReadBiasSnxFile()));
[9676]297 }
298
[3329]299 // Maximal Residuum
300 // ----------------
301 _MAXRES = settings.value("cmbMaxres").toDouble();
302 if (_MAXRES <= 0.0) {
303 _MAXRES = 999.0;
304 }
[10227]305 _newCorr = 0;
[2898]306}
307
308// Destructor
309////////////////////////////////////////////////////////////////////////////
310bncComb::~bncComb() {
[10221]311
[10227]312 _running = false;
[10274]313#ifndef WIN32
[10227]314 sleep(2);
[10274]315#else
316 Sleep( 2000);
317#endif
[10227]318
[3429]319 QListIterator<cmbAC*> icAC(_ACs);
320 while (icAC.hasNext()) {
321 delete icAC.next();
[2918]322 }
[10235]323 _ACs.clear();
[10216]324
[3201]325 delete _rtnetDecoder;
[10216]326
[9025]327 if (_ssrCorr) {
328 delete _ssrCorr;
[10221]329 }
[10216]330
[10227]331 if (_newCorr) {
332 delete _newCorr;
333 }
334
[3052]335 delete _antex;
[9676]336 delete _bsx;
[10038]337
[9258]338 QMapIterator<char, unsigned> itSys(_cmbSysPrn);
339 while (itSys.hasNext()) {
340 itSys.next();
341 char sys = itSys.key();
342 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
343 delete _params[sys][iPar-1];
344 }
[10038]345 _buffer.remove(sys);
[3296]346 }
[10229]347 _params.clear();
348 _buffer.clear();
[10227]349 _cmbSysPrn.clear();
[10216]350
[10038]351 while (!_epoClkData.empty()) {
352 delete _epoClkData.front();
353 _epoClkData.pop_front();
354 }
[2898]355}
356
[9676]357void bncComb::slotReadBiasSnxFile() {
358 bncSettings settings;
359 QString bsxFileName = settings.value("cmbBsxFile").toString();
[9695]360
361 if (bsxFileName.isEmpty()) {
362 emit newMessage("bncComb: no Bias SINEX file specified", true);
363 return;
364 }
365 if (!_bsx) {
[9676]366 _bsx = new bncBiasSnx();
367 }
368 if (_bsx->readFile(bsxFileName) != success) {
[9695]369 emit newMessage("bncComb: wrong Bias SINEX file", true);
[9676]370 delete _bsx;
371 _bsx = 0;
372 }
373 else {
[9695]374 emit newMessage("bncComb: successfully read Bias SINEX file", true);
[9676]375 }
[9710]376
[9695]377 QTimer::singleShot(_ms, this, SLOT(slotReadBiasSnxFile()));
[9676]378}
379
380
[6155]381// Remember orbit corrections
[2898]382////////////////////////////////////////////////////////////////////////////
[6155]383void bncComb::slotNewOrbCorrections(QList<t_orbCorr> orbCorrections) {
[2906]384 QMutexLocker locker(&_mutex);
[6155]385 for (int ii = 0; ii < orbCorrections.size(); ii++) {
386 t_orbCorr& orbCorr = orbCorrections[ii];
387 QString staID(orbCorr._staID.c_str());
[9296]388 char sys = orbCorr._prn.system();
[6155]389
[9296]390 if (!_cmbSysPrn.contains(sys)){
391 continue;
392 }
393
[6155]394 // Find/Check the AC Name
395 // ----------------------
396 QString acName;
397 QListIterator<cmbAC*> icAC(_ACs);
398 while (icAC.hasNext()) {
399 cmbAC* AC = icAC.next();
400 if (AC->mountPoint == staID) {
401 acName = AC->name;
402 break;
403 }
[3431]404 }
[6155]405 if (acName.isEmpty()) {
406 continue;
407 }
[3431]408
[6155]409 // Store the correction
410 // --------------------
[10216]411 QMap<t_prn, t_orbCorr>& storage = _orbCorrections[acName];
412 storage[orbCorr._prn] = orbCorr;
[2913]413 }
[6155]414}
[2913]415
[9676]416// Remember Satellite Code Biases
[9529]417////////////////////////////////////////////////////////////////////////////
[9530]418void bncComb::slotNewCodeBiases(QList<t_satCodeBias> satCodeBiases) {
[9529]419 QMutexLocker locker(&_mutex);
420
[9530]421 for (int ii = 0; ii < satCodeBiases.size(); ii++) {
422 t_satCodeBias& satCodeBias = satCodeBiases[ii];
423 QString staID(satCodeBias._staID.c_str());
424 char sys = satCodeBias._prn.system();
[9529]425
426 if (!_cmbSysPrn.contains(sys)){
427 continue;
428 }
429
430 // Find/Check the AC Name
431 // ----------------------
432 QString acName;
433 QListIterator<cmbAC*> icAC(_ACs);
434 while (icAC.hasNext()) {
435 cmbAC* AC = icAC.next();
436 if (AC->mountPoint == staID) {
437 acName = AC->name;
438 break;
439 }
440 }
441 if (acName.isEmpty()) {
442 continue;
443 }
444
445 // Store the correction
446 // --------------------
[10216]447 QMap<t_prn, t_satCodeBias>& storage = _satCodeBiases[acName];
448 storage[satCodeBias._prn] = satCodeBias;
[9529]449 }
[10229]450
[9529]451}
452
[6155]453// Process clock corrections
454////////////////////////////////////////////////////////////////////////////
455void bncComb::slotNewClkCorrections(QList<t_clkCorr> clkCorrections) {
456 QMutexLocker locker(&_mutex);
[10243]457 const double outWait = 1.0 * _cmbSampl;
[10081]458 int currentWeek = 0;
459 double currentSec = 0.0;
460 currentGPSWeeks(currentWeek, currentSec);
461 bncTime currentTime(currentWeek, currentSec);
[6155]462
[10038]463 // Loop over all observations (possible different epochs)
464 // -----------------------------------------------------
[6155]465 for (int ii = 0; ii < clkCorrections.size(); ii++) {
[10225]466 t_clkCorr& newClk = clkCorrections[ii];
467 char sys = newClk._prn.system();
[9296]468 if (!_cmbSysPrn.contains(sys)){
469 continue;
470 }
471
[10038]472 // Check Modulo Time
[6155]473 // -----------------
[10225]474 int sec = int(nint(newClk._time.gpssec()*10));
[10038]475 if (sec % (_cmbSampl*10) != 0.0) {
476 continue;
[3483]477 }
478
[6155]479 // Find/Check the AC Name
480 // ----------------------
481 QString acName;
[10116]482 bool isAPC;
[10225]483 QString staID(newClk._staID.c_str());
[6155]484 QListIterator<cmbAC*> icAC(_ACs);
485 while (icAC.hasNext()) {
486 cmbAC* AC = icAC.next();
487 if (AC->mountPoint == staID) {
488 acName = AC->name;
[10116]489 isAPC = AC->isAPC;
[6155]490 break;
491 }
[3588]492 }
[10116]493 if (acName.isEmpty() || isAPC != _masterIsAPC[sys]) {
[6155]494 continue;
495 }
[3588]496
[10098]497 // Check regarding current time
498 // ----------------------------
[10192]499 if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
[10225]500 if ((newClk._time >= currentTime) || // future time stamp
[10245]501 (currentTime - newClk._time) > 60.0) { // very old data sets
[10192]502 #ifdef BNC_DEBUG_CMB
[10225]503 emit newMessage("bncComb: future or very old data sets: " + acName.toLatin1() + " " + newClk._prn.toString().c_str() +
504 QString(" %1 ").arg(newClk._time.timestr().c_str()).toLatin1() + "vs. current time" +
[10192]505 QString(" %1 ").arg(currentTime.timestr().c_str()).toLatin1(), true);
506 #endif
507 continue;
508 }
[10098]509 }
510
[6155]511 // Check Correction Age
512 // --------------------
[10225]513 if (_resTime.valid() && newClk._time <= _resTime) {
[10077]514#ifdef BNC_DEBUG_CMB
[10225]515 emit newMessage("bncComb: old correction: " + acName.toLatin1() + " " + newClk._prn.toString().c_str() +
516 QString(" %1 ").arg(newClk._time.timestr().c_str()).toLatin1() + "vs. last processing Epoch" +
[10042]517 QString(" %1 ").arg(_resTime.timestr().c_str()).toLatin1(), true);
[10077]518#endif
[6155]519 continue;
520 }
[7297]521
[10153]522 // Set the last time
523 // -----------------
[10225]524 if (_lastClkCorrTime.undef() || newClk._time > _lastClkCorrTime) {
525 _lastClkCorrTime = newClk._time;
[10153]526 }
527
[10038]528 // Find the corresponding data epoch or create a new one
529 // -----------------------------------------------------
530 epoClkData* epoch = 0;
531 deque<epoClkData*>::const_iterator it;
532 for (it = _epoClkData.begin(); it != _epoClkData.end(); it++) {
[10225]533 if (newClk._time == (*it)->_time) {
[10038]534 epoch = *it;
535 break;
536 }
537 }
538 if (epoch == 0) {
[10225]539 if (_epoClkData.empty() || newClk._time > _epoClkData.back()->_time) {
[10038]540 epoch = new epoClkData;
[10225]541 epoch->_time = newClk._time;
[10038]542 _epoClkData.push_back(epoch);
543 }
544 }
545
546 // Put data into the epoch
547 // -----------------------
548 if (epoch != 0) {
549 epoch->_clkCorr.push_back(newClk);
550 }
551 }
552
553 // Make sure the buffer does not grow beyond any limit
554 // ---------------------------------------------------
[10200]555 const unsigned MAX_EPODATA_SIZE = 60.0 / _cmbSampl;
[10038]556 if (_epoClkData.size() > MAX_EPODATA_SIZE) {
557 delete _epoClkData.front();
558 _epoClkData.pop_front();
559 }
560
561 // Process the oldest epochs
562 // ------------------------
563 while (_epoClkData.size()) {
564
[10042]565 if (!_lastClkCorrTime.valid()) {
[10038]566 return;
567 }
568
[10225]569 const vector<t_clkCorr>& clkCorrVec = _epoClkData.front()->_clkCorr;
[10038]570
571 bncTime epoTime = _epoClkData.front()->_time;
572
[10200]573 if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
[10245]574 if ((currentTime - epoTime) > 60.0) {
[10200]575 delete _epoClkData.front();
576 _epoClkData.pop_front();
577 continue;
578 }
[10043]579 }
[10038]580 // Process the front epoch
581 // -----------------------
[10243]582 if (epoTime < (_lastClkCorrTime - outWait)) {
[10042]583 _resTime = epoTime;
584 processEpoch(_resTime, clkCorrVec);
[10038]585 delete _epoClkData.front();
586 _epoClkData.pop_front();
587 }
588 else {
589 return;
590 }
591 }
592}
593
594// Change the correction so that it refers to last received ephemeris
595////////////////////////////////////////////////////////////////////////////
596void bncComb::switchToLastEph(t_eph* lastEph, cmbCorr* corr) {
597
598 if (corr->_eph == lastEph) {
599 return;
600 }
601
602 ColumnVector oldXC(6);
603 ColumnVector oldVV(3);
604 if (corr->_eph->getCrd(corr->_time, oldXC, oldVV, false) != success) {
605 return;
606 }
607
608 ColumnVector newXC(6);
609 ColumnVector newVV(3);
610 if (lastEph->getCrd(corr->_time, newXC, newVV, false) != success) {
611 return;
612 }
613
614 ColumnVector dX = newXC.Rows(1,3) - oldXC.Rows(1,3);
615 ColumnVector dV = newVV - oldVV;
616 double dC = newXC(4) - oldXC(4);
617
618 ColumnVector dRAO(3);
619 XYZ_to_RSW(newXC.Rows(1,3), newVV, dX, dRAO);
620
621 ColumnVector dDotRAO(3);
622 XYZ_to_RSW(newXC.Rows(1,3), newVV, dV, dDotRAO);
623
624 QString msg = "switch corr " + corr->_prn.mid(0,3)
625 + QString(" %1 -> %2 %3").arg(corr->_iod,3).arg(lastEph->IOD(),3).arg(dC*t_CST::c, 8, 'f', 4);
626
627 emit newMessage(msg.toLatin1(), false);
628
629 corr->_iod = lastEph->IOD();
630 corr->_eph = lastEph;
631
[10216]632 corr->_orbCorr._xr += dRAO;
633 corr->_orbCorr._dotXr += dDotRAO;
[10225]634 corr->_clkCorr._dClk -= dC;
[10038]635}
636
637// Process Epoch
638////////////////////////////////////////////////////////////////////////////
[10225]639void bncComb::processEpoch(bncTime epoTime, const vector<t_clkCorr>& clkCorrVec) {
[10038]640
641 for (unsigned ii = 0; ii < clkCorrVec.size(); ii++) {
[10225]642 const t_clkCorr& clkCorr = clkCorrVec[ii];
643 QString staID(clkCorr._staID.c_str());
644 QString prn(clkCorr._prn.toInternalString().c_str());
645 char sys = clkCorr._prn.system();
[10038]646
647 // Find/Check the AC Name
648 // ----------------------
649 QString acName;
650 double weigthFactor;
651 QListIterator<cmbAC*> icAC(_ACs);
652 while (icAC.hasNext()) {
653 cmbAC* AC = icAC.next();
654 if (AC->mountPoint == staID) {
655 acName = AC->name;
656 weigthFactor = AC->weightFactor;
657 break;
658 }
659 }
660
[6155]661 // Create new correction
662 // ---------------------
[10229]663 _newCorr = new cmbCorr();
[10227]664 _newCorr->_prn = prn;
665 _newCorr->_time = clkCorr._time;
666 _newCorr->_iod = clkCorr._iod;
667 _newCorr->_acName = acName;
668 _newCorr->_weightFactor = weigthFactor;
669 _newCorr->_clkCorr = clkCorr;
[6155]670
[6156]671 // Check orbit correction
672 // ----------------------
673 if (!_orbCorrections.contains(acName)) {
[10227]674 delete _newCorr; _newCorr = 0;
[6156]675 continue;
676 }
677 else {
[10216]678 QMap<t_prn, t_orbCorr>& storage = _orbCorrections[acName];
[10225]679 if (!storage.contains(clkCorr._prn) ||
[10227]680 storage[clkCorr._prn]._iod != _newCorr->_iod) {
681 delete _newCorr; _newCorr = 0;
[6156]682 continue;
683 }
684 else {
[10227]685 _newCorr->_orbCorr = storage[clkCorr._prn];
[6156]686 }
687 }
688
[6155]689 // Check the Ephemeris
690 //--------------------
[7012]691 t_eph* ephLast = _ephUser.ephLast(prn);
692 t_eph* ephPrev = _ephUser.ephPrev(prn);
[6443]693 if (ephLast == 0) {
[9676]694#ifdef BNC_DEBUG_CMB
[10225]695 emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1(), true);
[9676]696#endif
[10227]697 delete _newCorr; _newCorr = 0;
[6155]698 continue;
[2986]699 }
[9268]700 else if (ephLast->checkState() == t_eph::bad ||
701 ephLast->checkState() == t_eph::outdated ||
702 ephLast->checkState() == t_eph::unhealthy) {
[9676]703#ifdef BNC_DEBUG_CMB
[10225]704 emit newMessage("bncComb: ephLast not ok (checkState: " + ephLast->checkStateToString().toLatin1() + ") for " + prn.mid(0,3).toLatin1(), true);
[9676]705#endif
[10227]706 delete _newCorr; _newCorr = 0;
[9266]707 continue;
708 }
[3029]709 else {
[10227]710 if (ephLast->IOD() == _newCorr->_iod) {
711 _newCorr->_eph = ephLast;
[6155]712 }
[9268]713 else if (ephPrev && ephPrev->checkState() == t_eph::ok &&
[10227]714 ephPrev->IOD() == _newCorr->_iod) {
715 _newCorr->_eph = ephPrev;
716 switchToLastEph(ephLast, _newCorr);
[6155]717 }
718 else {
[9676]719#ifdef BNC_DEBUG_CMB
[10225]720 emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1() +
[10227]721 QString(" with IOD %1").arg(_newCorr->_iod).toLatin1(), true);
[9676]722#endif
[10227]723 delete _newCorr; _newCorr = 0;
[6155]724 continue;
725 }
[2986]726 }
[6155]727
[9635]728 // Check satellite code biases
729 // ----------------------------
[9819]730 if (_satCodeBiases.contains(acName)) {
[10216]731 QMap<t_prn, t_satCodeBias>& storage = _satCodeBiases[acName];
[10225]732 if (storage.contains(clkCorr._prn)) {
[10227]733 _newCorr->_satCodeBias = storage[clkCorr._prn];
[9676]734 QMap<t_frequency::type, double> codeBiasesRefSig;
735 for (unsigned ii = 1; ii < cmbRefSig::cIF; ii++) {
[10038]736 t_frequency::type frqType = cmbRefSig::toFreq(sys, static_cast<cmbRefSig::type>(ii));
[9635]737 char frqNum = t_frequency::toString(frqType)[1];
[10038]738 char attrib = cmbRefSig::toAttrib(sys, static_cast<cmbRefSig::type>(ii));
[9676]739 QString rnxType2ch = QString("%1%2").arg(frqNum).arg(attrib);
[10227]740 for (unsigned ii = 0; ii < _newCorr->_satCodeBias._bias.size(); ii++) {
741 const t_frqCodeBias& bias = _newCorr->_satCodeBias._bias[ii];
[9676]742 if (rnxType2ch.toStdString() == bias._rnxType2ch) {
743 codeBiasesRefSig[frqType] = bias._value;
[9635]744 }
745 }
746 }
[9819]747 if (codeBiasesRefSig.size() == 2) {
748 map<t_frequency::type, double> codeCoeff;
[10227]749 double channel = double(_newCorr->_eph->slotNum());
[9819]750 cmbRefSig::coeff(sys, cmbRefSig::cIF, channel, codeCoeff);
751 map<t_frequency::type, double>::const_iterator it;
752 for (it = codeCoeff.begin(); it != codeCoeff.end(); it++) {
753 t_frequency::type frqType = it->first;
[10227]754 _newCorr->_satCodeBiasIF += it->second * codeBiasesRefSig[frqType];
[9819]755 }
[9676]756 }
[10227]757 _newCorr->_satCodeBias._bias.clear();
[9635]758 }
759 }
760
[6155]761 // Store correction into the buffer
762 // --------------------------------
[10038]763 QVector<cmbCorr*>& corrs = _buffer[sys].corrs;
764 QVectorIterator<cmbCorr*> itCorr(corrs);
765 bool available = false;
766 while (itCorr.hasNext()) {
767 cmbCorr* corr = itCorr.next();
768 QString prn = corr->_prn;
769 QString acName = corr->_acName;
[10229]770 if (_newCorr->_acName == acName &&
771 _newCorr->_prn == prn) {
[10038]772 available = true;
773 }
774 }
[10227]775
[10038]776 if (!available) {
[10227]777 corrs.push_back(_newCorr); _newCorr = 0;
[10038]778 }
779 else {
[10227]780 delete _newCorr; _newCorr = 0;
[10038]781 continue;
782 }
[2986]783 }
784
[10038]785 // Process Systems of this Epoch
786 // ------------------------------
[9258]787 QMapIterator<char, unsigned> itSys(_cmbSysPrn);
788 while (itSys.hasNext()) {
789 itSys.next();
790 char sys = itSys.key();
[10038]791 _log.clear();
792 QTextStream out(&_log, QIODevice::WriteOnly);
793 processSystem(epoTime, sys, out);
[10224]794 _buffer.remove(sys);
[10038]795 emit newMessage(_log, false);
[2927]796 }
[2898]797}
798
[10038]799void bncComb::processSystem(bncTime epoTime, char sys, QTextStream& out) {
[3028]800
[9635]801 out << "\n" << "Combination: " << sys << "\n"
802 << "--------------------------------" << "\n";
[2990]803
[3433]804 // Observation Statistics
805 // ----------------------
[3455]806 bool masterPresent = false;
[3433]807 QListIterator<cmbAC*> icAC(_ACs);
808 while (icAC.hasNext()) {
809 cmbAC* AC = icAC.next();
[9258]810 AC->numObs[sys] = 0;
811 QVectorIterator<cmbCorr*> itCorr(corrs(sys));
[3433]812 while (itCorr.hasNext()) {
813 cmbCorr* corr = itCorr.next();
[6157]814 if (corr->_acName == AC->name) {
[9258]815 AC->numObs[sys] += 1;
816 if (AC->name == _masterOrbitAC[sys]) {
[3453]817 masterPresent = true;
818 }
[3433]819 }
820 }
[9635]821 out << AC->name.toLatin1().data() << ": " << AC->numObs[sys] << "\n";
[3433]822 }
823
[3453]824 // If Master not present, switch to another one
825 // --------------------------------------------
[4889]826 const unsigned switchMasterAfterGap = 1;
[3456]827 if (masterPresent) {
[9258]828 _masterMissingEpochs[sys] = 0;
[3456]829 }
830 else {
[9258]831 ++_masterMissingEpochs[sys];
832 if (_masterMissingEpochs[sys] < switchMasterAfterGap) {
[9635]833 out << "Missing Master, Epoch skipped" << "\n";
[10038]834 _buffer.remove(sys);
[3455]835 emit newMessage(_log, false);
836 return;
[3453]837 }
[3455]838 else {
[9258]839 _masterMissingEpochs[sys] = 0;
[3455]840 QListIterator<cmbAC*> icAC(_ACs);
841 while (icAC.hasNext()) {
842 cmbAC* AC = icAC.next();
[9258]843 if (AC->numObs[sys] > 0) {
[3455]844 out << "Switching Master AC "
[9258]845 << _masterOrbitAC[sys].toLatin1().data() << " --> "
[8204]846 << AC->name.toLatin1().data() << " "
[10038]847 << epoTime.datestr().c_str() << " "
848 << epoTime.timestr().c_str() << "\n";
[9258]849 _masterOrbitAC[sys] = AC->name;
[10116]850 _masterIsAPC[sys] = AC->isAPC;
[3455]851 break;
852 }
[3452]853 }
854 }
855 }
856
[6157]857 QMap<QString, cmbCorr*> resCorr;
[3472]858
859 // Perform the actual Combination using selected Method
860 // ----------------------------------------------------
861 t_irc irc;
[3475]862 ColumnVector dx;
[3472]863 if (_method == filter) {
[10038]864 irc = processEpoch_filter(epoTime, sys, out, resCorr, dx);
[3472]865 }
866 else {
[10038]867 irc = processEpoch_singleEpoch(epoTime, sys, out, resCorr, dx);
[3472]868 }
[10230]869
[3475]870 // Update Parameter Values, Print Results
871 // --------------------------------------
[3472]872 if (irc == success) {
[9258]873 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
874 cmbParam* pp = _params[sys][iPar-1];
[3475]875 pp->xx += dx(iPar);
876 if (pp->type == cmbParam::clkSat) {
877 if (resCorr.find(pp->prn) != resCorr.end()) {
[9676]878 // set clock result
[6160]879 resCorr[pp->prn]->_dClkResult = pp->xx / t_CST::c;
[9676]880 // Add Code Biases from SINEX File
881 if (_bsx) {
882 map<t_frequency::type, double> codeCoeff;
883 double channel = double(resCorr[pp->prn]->_eph->slotNum());
884 cmbRefSig::coeff(sys, cmbRefSig::cIF, channel, codeCoeff);
885 t_frequency::type fType1 = cmbRefSig::toFreq(sys, cmbRefSig::c1);
886 t_frequency::type fType2 = cmbRefSig::toFreq(sys, cmbRefSig::c2);
887 _bsx->determineSsrSatCodeBiases(pp->prn.mid(0,3), codeCoeff[fType1], codeCoeff[fType2], resCorr[pp->prn]->_satCodeBias);
888 }
[3475]889 }
890 }
[10038]891 out << epoTime.datestr().c_str() << " "
892 << epoTime.timestr().c_str() << " ";
[3475]893 out.setRealNumberNotation(QTextStream::FixedNotation);
894 out.setFieldWidth(8);
895 out.setRealNumberPrecision(4);
[9258]896 out << pp->toString(sys) << " "
[9635]897 << pp->xx << " +- " << sqrt(_QQ[sys](pp->index,pp->index)) << "\n";
[3475]898 out.setFieldWidth(0);
899 }
[10038]900 printResults(epoTime, out, resCorr);
901 dumpResults(epoTime, resCorr);
[3472]902 }
903}
904
905// Process Epoch - Filter Method
906////////////////////////////////////////////////////////////////////////////
[10038]907t_irc bncComb::processEpoch_filter(bncTime epoTime, char sys, QTextStream& out,
[6157]908 QMap<QString, cmbCorr*>& resCorr,
[3475]909 ColumnVector& dx) {
[3472]910
[3429]911 // Prediction Step
912 // ---------------
[9258]913 int nPar = _params[sys].size();
[2933]914 ColumnVector x0(nPar);
[9258]915 for (int iPar = 1; iPar <= nPar; iPar++) {
916 cmbParam* pp = _params[sys][iPar-1];
[3455]917 if (pp->epoSpec) {
[3451]918 pp->xx = 0.0;
[9258]919 _QQ[sys].Row(iPar) = 0.0;
920 _QQ[sys].Column(iPar) = 0.0;
921 _QQ[sys](iPar,iPar) = pp->sig0 * pp->sig0;
[3451]922 }
[3455]923 else {
[9258]924 _QQ[sys](iPar,iPar) += pp->sigP * pp->sigP;
[3455]925 }
[2933]926 x0(iPar) = pp->xx;
927 }
928
[3487]929 // Check Satellite Positions for Outliers
930 // --------------------------------------
[10038]931 if (checkOrbits(epoTime, sys, out) != success) {
[3487]932 return failure;
933 }
[3441]934
[3455]935 // Update and outlier detection loop
936 // ---------------------------------
[9258]937 SymmetricMatrix QQ_sav = _QQ[sys];
[10227]938 while (_running) {
[3135]939
[3455]940 Matrix AA;
941 ColumnVector ll;
942 DiagonalMatrix PP;
[3429]943
[9258]944 if (createAmat(sys, AA, ll, PP, x0, resCorr) != success) {
[3472]945 return failure;
[3441]946 }
[2933]947
[6169]948 dx.ReSize(nPar); dx = 0.0;
[9258]949 kalman(AA, ll, PP, _QQ[sys], dx);
[6164]950
[3429]951 ColumnVector vv = ll - AA * dx;
[3080]952
[3429]953 int maxResIndex;
[7297]954 double maxRes = vv.maximum_absolute_value1(maxResIndex);
[3429]955 out.setRealNumberNotation(QTextStream::FixedNotation);
[7297]956 out.setRealNumberPrecision(3);
[10038]957 out << epoTime.datestr().c_str() << " " << epoTime.timestr().c_str()
[3432]958 << " Maximum Residuum " << maxRes << ' '
[9258]959 << corrs(sys)[maxResIndex-1]->_acName << ' ' << corrs(sys)[maxResIndex-1]->_prn.mid(0,3);
[3432]960 if (maxRes > _MAXRES) {
[9258]961 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
962 cmbParam* pp = _params[sys][iPar-1];
[7297]963 if (pp->type == cmbParam::offACSat &&
[9258]964 pp->AC == corrs(sys)[maxResIndex-1]->_acName &&
965 pp->prn == corrs(sys)[maxResIndex-1]->_prn.mid(0,3)) {
[3432]966 QQ_sav.Row(iPar) = 0.0;
967 QQ_sav.Column(iPar) = 0.0;
[3455]968 QQ_sav(iPar,iPar) = pp->sig0 * pp->sig0;
[3432]969 }
970 }
971
[9635]972 out << " Outlier" << "\n";
[9258]973 _QQ[sys] = QQ_sav;
[10230]974 delete corrs(sys)[maxResIndex-1];
[9258]975 corrs(sys).remove(maxResIndex-1);
[3432]976 }
977 else {
[9635]978 out << " OK" << "\n";
[6330]979 out.setRealNumberNotation(QTextStream::FixedNotation);
980 out.setRealNumberPrecision(4);
[9258]981 for (int ii = 0; ii < corrs(sys).size(); ii++) {
982 const cmbCorr* corr = corrs(sys)[ii];
[10038]983 out << epoTime.datestr().c_str() << ' '
984 << epoTime.timestr().c_str() << " "
[6962]985 << corr->_acName << ' ' << corr->_prn.mid(0,3);
[6330]986 out.setFieldWidth(10);
[9635]987 out << " res = " << vv[ii] << "\n";
[6330]988 out.setFieldWidth(0);
989 }
[3432]990 break;
991 }
992 }
993
[3472]994 return success;
[2918]995}
[3011]996
[3201]997// Print results
[3011]998////////////////////////////////////////////////////////////////////////////
[10038]999void bncComb::printResults(bncTime epoTime, QTextStream& out,
[6157]1000 const QMap<QString, cmbCorr*>& resCorr) {
[3011]1001
[6157]1002 QMapIterator<QString, cmbCorr*> it(resCorr);
[3011]1003 while (it.hasNext()) {
1004 it.next();
[6157]1005 cmbCorr* corr = it.value();
1006 const t_eph* eph = corr->_eph;
[3015]1007 if (eph) {
[8542]1008 ColumnVector xc(6);
[6109]1009 ColumnVector vv(3);
[10038]1010 if (eph->getCrd(epoTime, xc, vv, false) != success) {
[9268]1011 continue;
1012 }
[10038]1013 out << epoTime.datestr().c_str() << " "
1014 << epoTime.timestr().c_str() << " ";
[3015]1015 out.setFieldWidth(3);
[6962]1016 out << "Full Clock " << corr->_prn.mid(0,3) << " " << corr->_iod << " ";
[3015]1017 out.setFieldWidth(14);
[9635]1018 out << (xc(4) + corr->_dClkResult) * t_CST::c << "\n";
[3370]1019 out.setFieldWidth(0);
[3015]1020 }
1021 else {
[9691]1022 out << "bncComb::printResults bug" << "\n";
[3015]1023 }
[9676]1024 out.flush();
[3011]1025 }
1026}
[3202]1027
1028// Send results to RTNet Decoder and directly to PPP Client
1029////////////////////////////////////////////////////////////////////////////
[10229]1030void bncComb::dumpResults(bncTime epoTime, QMap<QString, cmbCorr*>& resCorr) {
[3202]1031
[6161]1032 QList<t_orbCorr> orbCorrections;
1033 QList<t_clkCorr> clkCorrections;
[9676]1034 QList<t_satCodeBias> satCodeBiasList;
[6161]1035
[3214]1036 unsigned year, month, day, hour, minute;
1037 double sec;
[10038]1038 epoTime.civil_date(year, month, day);
1039 epoTime.civil_time(hour, minute, sec);
[3214]1040
[9676]1041 QString outLines = QString().asprintf("* %4d %2d %2d %d %d %12.8f\n",
1042 year, month, day, hour, minute, sec);
[3214]1043
[10229]1044 QMutableMapIterator<QString, cmbCorr*> it(resCorr);
[3202]1045 while (it.hasNext()) {
1046 it.next();
[6157]1047 cmbCorr* corr = it.value();
[10038]1048
[9676]1049 // ORBIT
[10216]1050 t_orbCorr orbCorr(corr->_orbCorr);
[7013]1051 orbCorr._staID = "INTERNAL";
1052 orbCorrections.push_back(orbCorr);
[10038]1053
[9676]1054 // CLOCK
[10225]1055 t_clkCorr clkCorr(corr->_clkCorr);
[7013]1056 clkCorr._staID = "INTERNAL";
1057 clkCorr._dClk = corr->_dClkResult;
1058 clkCorr._dotDClk = 0.0;
1059 clkCorr._dotDotDClk = 0.0;
1060 clkCorrections.push_back(clkCorr);
[10038]1061
[8542]1062 ColumnVector xc(6);
[4978]1063 ColumnVector vv(3);
[7013]1064 corr->_eph->setClkCorr(dynamic_cast<const t_clkCorr*>(&clkCorr));
1065 corr->_eph->setOrbCorr(dynamic_cast<const t_orbCorr*>(&orbCorr));
[10038]1066 if (corr->_eph->getCrd(epoTime, xc, vv, true) != success) {
[9268]1067 delete corr;
[10229]1068 it.remove();
[9268]1069 continue;
1070 }
[7012]1071
[4978]1072 // Correction Phase Center --> CoM
1073 // -------------------------------
[10153]1074 ColumnVector dx(3); dx = 0.0;
[10116]1075 ColumnVector apc(3); apc = 0.0;
1076 ColumnVector com(3); com = 0.0;
1077 bool masterIsAPC = true;
[4978]1078 if (_antex) {
[10038]1079 double Mjd = epoTime.mjd() + epoTime.daysec()/86400.0;
[10116]1080 char sys = corr->_eph->prn().system();
1081 masterIsAPC = _masterIsAPC[sys];
[6157]1082 if (_antex->satCoMcorrection(corr->_prn, Mjd, xc.Rows(1,3), dx) != success) {
[4992]1083 dx = 0;
[8204]1084 _log += "antenna not found " + corr->_prn.mid(0,3).toLatin1() + '\n';
[3214]1085 }
1086 }
[10116]1087 if (masterIsAPC) {
1088 apc(1) = xc(1);
1089 apc(2) = xc(2);
1090 apc(3) = xc(3);
1091 com(1) = xc(1)-dx(1);
1092 com(2) = xc(2)-dx(2);
1093 com(3) = xc(3)-dx(3);
1094 }
1095 else {
1096 com(1) = xc(1);
1097 com(2) = xc(2);
1098 com(3) = xc(3);
1099 apc(1) = xc(1)+dx(1);
1100 apc(2) = xc(2)+dx(2);
1101 apc(3) = xc(3)+dx(3);
1102 }
[7012]1103
1104 outLines += corr->_prn.mid(0,3);
[10109]1105 QString hlp = QString().asprintf(
1106 " APC 3 %15.4f %15.4f %15.4f"
[9676]1107 " Clk 1 %15.4f"
1108 " Vel 3 %15.4f %15.4f %15.4f"
1109 " CoM 3 %15.4f %15.4f %15.4f",
[10116]1110 apc(1), apc(2), apc(3),
[9676]1111 xc(4) * t_CST::c,
1112 vv(1), vv(2), vv(3),
[10116]1113 com(1), com(2), com(3));
[5337]1114 outLines += hlp;
[9676]1115 hlp.clear();
[5337]1116
[10101]1117 // CODE BIASES
[10216]1118 if (corr->_satCodeBias._bias.size()) {
1119 t_satCodeBias satCodeBias(corr->_satCodeBias);
[10101]1120 satCodeBias._staID = "INTERNAL";
1121 satCodeBiasList.push_back(satCodeBias);
[9676]1122 hlp = QString().asprintf(" CodeBias %2lu", satCodeBias._bias.size());
1123 outLines += hlp;
1124 hlp.clear();
1125 for (unsigned ii = 0; ii < satCodeBias._bias.size(); ii++) {
1126 const t_frqCodeBias& frqCodeBias = satCodeBias._bias[ii];
1127 if (!frqCodeBias._rnxType2ch.empty()) {
1128 hlp = QString().asprintf(" %s%10.6f", frqCodeBias._rnxType2ch.c_str(), frqCodeBias._value);
1129 outLines += hlp;
1130 hlp.clear();
1131 }
1132 }
1133 }
1134 outLines += "\n";
[3214]1135 delete corr;
[10229]1136 it.remove();
[3214]1137 }
1138
[5337]1139 outLines += "EOE\n"; // End Of Epoch flag
[9710]1140 //cout << outLines.toStdString();
[5337]1141
[3215]1142 if (!_rtnetDecoder) {
1143 _rtnetDecoder = new bncRtnetDecoder();
1144 }
[3221]1145
[3215]1146 vector<string> errmsg;
[8204]1147 _rtnetDecoder->Decode(outLines.toLatin1().data(), outLines.length(), errmsg);
[3215]1148
[5861]1149 // Send new Corrections to PPP etc.
1150 // --------------------------------
[6161]1151 if (orbCorrections.size() > 0 && clkCorrections.size() > 0) {
1152 emit newOrbCorrections(orbCorrections);
1153 emit newClkCorrections(clkCorrections);
1154 }
[9676]1155 if (satCodeBiasList.size()) {
1156 emit newCodeBiases(satCodeBiasList);
1157 }
[3202]1158}
[3455]1159
1160// Create First Design Matrix and Vector of Measurements
1161////////////////////////////////////////////////////////////////////////////
[9258]1162t_irc bncComb::createAmat(char sys, Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP,
1163 const ColumnVector& x0, QMap<QString, cmbCorr*>& resCorr) {
[3455]1164
[9258]1165 unsigned nPar = _params[sys].size();
1166 unsigned nObs = corrs(sys).size();
[3455]1167
1168 if (nObs == 0) {
1169 return failure;
1170 }
1171
[9258]1172 int maxSat = _cmbSysPrn[sys];
[3455]1173
[9259]1174 const int nCon = (_method == filter) ? 1 + maxSat : 0;
[3483]1175
[3455]1176 AA.ReSize(nObs+nCon, nPar); AA = 0.0;
1177 ll.ReSize(nObs+nCon); ll = 0.0;
1178 PP.ReSize(nObs+nCon); PP = 1.0 / (sigObs * sigObs);
1179
1180 int iObs = 0;
[9258]1181 QVectorIterator<cmbCorr*> itCorr(corrs(sys));
[3455]1182 while (itCorr.hasNext()) {
1183 cmbCorr* corr = itCorr.next();
[6157]1184 QString prn = corr->_prn;
[3487]1185
[3455]1186 ++iObs;
1187
[9258]1188 if (corr->_acName == _masterOrbitAC[sys] && resCorr.find(prn) == resCorr.end()) {
[6157]1189 resCorr[prn] = new cmbCorr(*corr);
[3455]1190 }
1191
[9258]1192 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
1193 cmbParam* pp = _params[sys][iPar-1];
1194 AA(iObs, iPar) = pp->partial(sys, corr->_acName, prn);
[3455]1195 }
1196
[10225]1197 ll(iObs) = (corr->_clkCorr._dClk * t_CST::c - corr->_satCodeBiasIF) - DotProduct(AA.Row(iObs), x0);
[9819]1198
[9821]1199 PP(iObs, iObs) *= 1.0 / (corr->_weightFactor * corr->_weightFactor);
[3455]1200 }
1201
1202 // Regularization
1203 // --------------
[3474]1204 if (_method == filter) {
1205 const double Ph = 1.e6;
1206 PP(nObs+1) = Ph;
[9258]1207 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
1208 cmbParam* pp = _params[sys][iPar-1];
[3465]1209 if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
[3474]1210 pp->type == cmbParam::clkSat ) {
1211 AA(nObs+1, iPar) = 1.0;
[3455]1212 }
1213 }
[9258]1214 unsigned flag = 0;
1215 if (sys == 'E') {
1216 flag = 1;
1217 }
[10026]1218// if (sys == 'R') {
1219// return success;
1220// }
[9259]1221 int iCond = 1;
1222 // GNSS
[9258]1223 for (unsigned iGnss = 1; iGnss <= _cmbSysPrn[sys]; iGnss++) {
1224 QString prn = QString("%1%2_%3").arg(sys).arg(iGnss, 2, 10, QChar('0')).arg(flag);
[3474]1225 ++iCond;
1226 PP(nObs+iCond) = Ph;
[9258]1227 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
1228 cmbParam* pp = _params[sys][iPar-1];
[7299]1229 if ( pp &&
1230 AA.Column(iPar).maximum_absolute_value() > 0.0 &&
[7297]1231 pp->type == cmbParam::offACSat &&
[3474]1232 pp->prn == prn) {
1233 AA(nObs+iCond, iPar) = 1.0;
1234 }
1235 }
1236 }
[3455]1237 }
1238
1239 return success;
1240}
[3470]1241
1242// Process Epoch - Single-Epoch Method
1243////////////////////////////////////////////////////////////////////////////
[10038]1244t_irc bncComb::processEpoch_singleEpoch(bncTime epoTime, char sys, QTextStream& out,
[6157]1245 QMap<QString, cmbCorr*>& resCorr,
[3475]1246 ColumnVector& dx) {
[3470]1247
[3487]1248 // Check Satellite Positions for Outliers
1249 // --------------------------------------
[10038]1250 if (checkOrbits(epoTime, sys, out) != success) {
[3487]1251 return failure;
1252 }
1253
[3482]1254 // Outlier Detection Loop
1255 // ----------------------
[10227]1256 while (_running) {
[7297]1257
[3482]1258 // Remove Satellites that are not in Master
1259 // ----------------------------------------
[9258]1260 QMutableVectorIterator<cmbCorr*> it(corrs(sys));
[3482]1261 while (it.hasNext()) {
1262 cmbCorr* corr = it.next();
[6157]1263 QString prn = corr->_prn;
[3482]1264 bool foundMaster = false;
[9258]1265 QVectorIterator<cmbCorr*> itHlp(corrs(sys));
[3482]1266 while (itHlp.hasNext()) {
1267 cmbCorr* corrHlp = itHlp.next();
[6157]1268 QString prnHlp = corrHlp->_prn;
1269 QString ACHlp = corrHlp->_acName;
[9258]1270 if (ACHlp == _masterOrbitAC[sys] && prn == prnHlp) {
[3482]1271 foundMaster = true;
1272 break;
1273 }
[3476]1274 }
[3482]1275 if (!foundMaster) {
[3556]1276 delete corr;
[3482]1277 it.remove();
1278 }
[3473]1279 }
[7297]1280
[3482]1281 // Count Number of Observations per Satellite and per AC
1282 // -----------------------------------------------------
1283 QMap<QString, int> numObsPrn;
1284 QMap<QString, int> numObsAC;
[9258]1285 QVectorIterator<cmbCorr*> itCorr(corrs(sys));
[3482]1286 while (itCorr.hasNext()) {
1287 cmbCorr* corr = itCorr.next();
[6157]1288 QString prn = corr->_prn;
1289 QString AC = corr->_acName;
[3482]1290 if (numObsPrn.find(prn) == numObsPrn.end()) {
1291 numObsPrn[prn] = 1;
1292 }
1293 else {
1294 numObsPrn[prn] += 1;
1295 }
1296 if (numObsAC.find(AC) == numObsAC.end()) {
1297 numObsAC[AC] = 1;
1298 }
1299 else {
1300 numObsAC[AC] += 1;
1301 }
[3476]1302 }
[7297]1303
[9258]1304 // Clean-Up the Parameters
1305 // -----------------------
1306 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
1307 delete _params[sys][iPar-1];
[3474]1308 }
[9258]1309 _params[sys].clear();
[7297]1310
[3482]1311 // Set new Parameters
1312 // ------------------
1313 int nextPar = 0;
[7297]1314
[3482]1315 QMapIterator<QString, int> itAC(numObsAC);
1316 while (itAC.hasNext()) {
1317 itAC.next();
1318 const QString& AC = itAC.key();
1319 int numObs = itAC.value();
[9258]1320 if (AC != _masterOrbitAC[sys] && numObs > 0) {
1321 _params[sys].push_back(new cmbParam(cmbParam::offACgnss, ++nextPar, AC, ""));
[3482]1322 }
[7297]1323 }
1324
[3482]1325 QMapIterator<QString, int> itPrn(numObsPrn);
1326 while (itPrn.hasNext()) {
1327 itPrn.next();
1328 const QString& prn = itPrn.key();
1329 int numObs = itPrn.value();
1330 if (numObs > 0) {
[9258]1331 _params[sys].push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
[3482]1332 }
[7297]1333 }
1334
[9258]1335 int nPar = _params[sys].size();
[7297]1336 ColumnVector x0(nPar);
[3482]1337 x0 = 0.0;
[7297]1338
[3482]1339 // Create First-Design Matrix
1340 // --------------------------
1341 Matrix AA;
1342 ColumnVector ll;
1343 DiagonalMatrix PP;
[9258]1344 if (createAmat(sys, AA, ll, PP, x0, resCorr) != success) {
[3482]1345 return failure;
[3476]1346 }
[7297]1347
[3482]1348 ColumnVector vv;
1349 try {
1350 Matrix ATP = AA.t() * PP;
1351 SymmetricMatrix NN; NN << ATP * AA;
1352 ColumnVector bb = ATP * ll;
[9258]1353 _QQ[sys] = NN.i();
1354 dx = _QQ[sys] * bb;
[3482]1355 vv = ll - AA * dx;
[3476]1356 }
[3482]1357 catch (Exception& exc) {
[9635]1358 out << exc.what() << "\n";
[3482]1359 return failure;
[3476]1360 }
[3474]1361
[3482]1362 int maxResIndex;
[7297]1363 double maxRes = vv.maximum_absolute_value1(maxResIndex);
[3482]1364 out.setRealNumberNotation(QTextStream::FixedNotation);
[7297]1365 out.setRealNumberPrecision(3);
[10038]1366 out << epoTime.datestr().c_str() << " " << epoTime.timestr().c_str()
[3482]1367 << " Maximum Residuum " << maxRes << ' '
[9258]1368 << corrs(sys)[maxResIndex-1]->_acName << ' ' << corrs(sys)[maxResIndex-1]->_prn.mid(0,3);
[3474]1369
[3482]1370 if (maxRes > _MAXRES) {
[9635]1371 out << " Outlier" << "\n";
[9258]1372 delete corrs(sys)[maxResIndex-1];
1373 corrs(sys).remove(maxResIndex-1);
[3474]1374 }
[3482]1375 else {
[9635]1376 out << " OK" << "\n";
[3482]1377 out.setRealNumberNotation(QTextStream::FixedNotation);
[7297]1378 out.setRealNumberPrecision(3);
[3482]1379 for (int ii = 0; ii < vv.Nrows(); ii++) {
[9258]1380 const cmbCorr* corr = corrs(sys)[ii];
[10038]1381 out << epoTime.datestr().c_str() << ' '
1382 << epoTime.timestr().c_str() << " "
[6962]1383 << corr->_acName << ' ' << corr->_prn.mid(0,3);
[3482]1384 out.setFieldWidth(6);
[9635]1385 out << " res = " << vv[ii] << "\n";
[3482]1386 out.setFieldWidth(0);
1387 }
1388 return success;
[3474]1389 }
1390
[3473]1391 }
[3474]1392
[3482]1393 return failure;
[3470]1394}
[3487]1395
1396// Check Satellite Positions for Outliers
1397////////////////////////////////////////////////////////////////////////////
[10038]1398t_irc bncComb::checkOrbits(bncTime epoTime, char sys, QTextStream& out) {
[3487]1399
[10153]1400 const double MAX_DISPLACEMENT_INIT = 0.50;
[3488]1401
[10153]1402 double MAX_DISPLACEMENT = MAX_DISPLACEMENT_INIT;
1403 if (sys == 'C') {
1404 MAX_DISPLACEMENT *= 10.0;
1405 }
1406 if (sys == 'R') {
1407 MAX_DISPLACEMENT *= 2.0;
1408 }
1409
[3502]1410 // Switch to last ephemeris (if possible)
1411 // --------------------------------------
[9258]1412 QMutableVectorIterator<cmbCorr*> im(corrs(sys));
[3501]1413 while (im.hasNext()) {
1414 cmbCorr* corr = im.next();
[6157]1415 QString prn = corr->_prn;
[6443]1416
[7012]1417 t_eph* ephLast = _ephUser.ephLast(prn);
1418 t_eph* ephPrev = _ephUser.ephPrev(prn);
[6443]1419
1420 if (ephLast == 0) {
[9635]1421 out << "checkOrbit: missing eph (not found) " << corr->_prn.mid(0,3) << "\n";
[3556]1422 delete corr;
[3501]1423 im.remove();
1424 }
[6157]1425 else if (corr->_eph == 0) {
[9635]1426 out << "checkOrbit: missing eph (zero) " << corr->_prn.mid(0,3) << "\n";
[3556]1427 delete corr;
[3503]1428 im.remove();
1429 }
[3502]1430 else {
[6443]1431 if ( corr->_eph == ephLast || corr->_eph == ephPrev ) {
1432 switchToLastEph(ephLast, corr);
[3502]1433 }
1434 else {
[9635]1435 out << "checkOrbit: missing eph (deleted) " << corr->_prn.mid(0,3) << "\n";
[3556]1436 delete corr;
[3502]1437 im.remove();
1438 }
1439 }
[3501]1440 }
1441
[10227]1442 while (_running) {
[3488]1443
1444 // Compute Mean Corrections for all Satellites
1445 // -------------------------------------------
[3489]1446 QMap<QString, int> numCorr;
[3488]1447 QMap<QString, ColumnVector> meanRao;
[9258]1448 QVectorIterator<cmbCorr*> it(corrs(sys));
[3488]1449 while (it.hasNext()) {
1450 cmbCorr* corr = it.next();
[6157]1451 QString prn = corr->_prn;
[3488]1452 if (meanRao.find(prn) == meanRao.end()) {
1453 meanRao[prn].ReSize(4);
[10216]1454 meanRao[prn].Rows(1,3) = corr->_orbCorr._xr;
[7297]1455 meanRao[prn](4) = 1;
[3488]1456 }
1457 else {
[10216]1458 meanRao[prn].Rows(1,3) += corr->_orbCorr._xr;
[7297]1459 meanRao[prn](4) += 1;
[3488]1460 }
[3489]1461 if (numCorr.find(prn) == numCorr.end()) {
1462 numCorr[prn] = 1;
1463 }
1464 else {
1465 numCorr[prn] += 1;
1466 }
[3487]1467 }
[7297]1468
[9258]1469 // Compute Differences wrt. Mean, find Maximum
1470 // -------------------------------------------
[3488]1471 QMap<QString, cmbCorr*> maxDiff;
1472 it.toFront();
1473 while (it.hasNext()) {
1474 cmbCorr* corr = it.next();
[6157]1475 QString prn = corr->_prn;
[3488]1476 if (meanRao[prn](4) != 0) {
1477 meanRao[prn] /= meanRao[prn](4);
1478 meanRao[prn](4) = 0;
1479 }
[10216]1480 corr->_diffRao = corr->_orbCorr._xr - meanRao[prn].Rows(1,3);
[3488]1481 if (maxDiff.find(prn) == maxDiff.end()) {
1482 maxDiff[prn] = corr;
1483 }
1484 else {
[8901]1485 double normMax = maxDiff[prn]->_diffRao.NormFrobenius();
1486 double norm = corr->_diffRao.NormFrobenius();
[3488]1487 if (norm > normMax) {
1488 maxDiff[prn] = corr;
1489 }
[7297]1490 }
[3487]1491 }
[7297]1492
[3655]1493 if (_ACs.size() == 1) {
1494 break;
1495 }
1496
[3488]1497 // Remove Outliers
1498 // ---------------
1499 bool removed = false;
[9258]1500 QMutableVectorIterator<cmbCorr*> im(corrs(sys));
[3488]1501 while (im.hasNext()) {
1502 cmbCorr* corr = im.next();
[6157]1503 QString prn = corr->_prn;
[3489]1504 if (numCorr[prn] < 2) {
[3556]1505 delete corr;
[3489]1506 im.remove();
1507 }
1508 else if (corr == maxDiff[prn]) {
[8901]1509 double norm = corr->_diffRao.NormFrobenius();
[3488]1510 if (norm > MAX_DISPLACEMENT) {
[10038]1511 out << epoTime.datestr().c_str() << " "
1512 << epoTime.timestr().c_str() << " "
[7297]1513 << "Orbit Outlier: "
[8204]1514 << corr->_acName.toLatin1().data() << " "
1515 << prn.mid(0,3).toLatin1().data() << " "
[7297]1516 << corr->_iod << " "
[9635]1517 << norm << "\n";
[3556]1518 delete corr;
[3488]1519 im.remove();
1520 removed = true;
1521 }
1522 }
[3487]1523 }
[7297]1524
[3488]1525 if (!removed) {
1526 break;
1527 }
[3487]1528 }
1529
1530 return success;
1531}
[3588]1532
[7297]1533//
[3588]1534////////////////////////////////////////////////////////////////////////////
[5583]1535void bncComb::slotProviderIDChanged(QString mountPoint) {
1536 QMutexLocker locker(&_mutex);
1537
[8065]1538 QTextStream out(&_log, QIODevice::WriteOnly);
1539
[5583]1540 // Find the AC Name
1541 // ----------------
1542 QString acName;
1543 QListIterator<cmbAC*> icAC(_ACs);
1544 while (icAC.hasNext()) {
[10038]1545 cmbAC *AC = icAC.next();
[5583]1546 if (AC->mountPoint == mountPoint) {
1547 acName = AC->name;
[10038]1548 out << "Provider ID changed: AC " << AC->name.toLatin1().data() << " "
[10081]1549 << _resTime.datestr().c_str() << " " << _resTime.timestr().c_str()
[10038]1550 << "\n";
[5583]1551 break;
1552 }
1553 }
1554 if (acName.isEmpty()) {
1555 return;
1556 }
[9258]1557 QMapIterator<char, unsigned> itSys(_cmbSysPrn);
1558 while (itSys.hasNext()) {
1559 itSys.next();
1560 char sys = itSys.key();
1561 // Remove all corrections of the corresponding AC
1562 // ----------------------------------------------
[10038]1563 QVector<cmbCorr*> &corrVec = _buffer[sys].corrs;
1564 QMutableVectorIterator<cmbCorr*> it(corrVec);
1565 while (it.hasNext()) {
1566 cmbCorr *corr = it.next();
1567 if (acName == corr->_acName) {
1568 delete corr;
1569 it.remove();
[5583]1570 }
1571 }
[9258]1572 // Reset Satellite Offsets
1573 // -----------------------
1574 if (_method == filter) {
1575 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
[10038]1576 cmbParam *pp = _params[sys][iPar - 1];
[9258]1577 if (pp->AC == acName && pp->type == cmbParam::offACSat) {
1578 pp->xx = 0.0;
[10038]1579 _QQ[sys].Row(iPar) = 0.0;
[9258]1580 _QQ[sys].Column(iPar) = 0.0;
[10038]1581 _QQ[sys](iPar, iPar) = pp->sig0 * pp->sig0;
[9258]1582 }
[5585]1583 }
1584 }
1585 }
[5583]1586}
Note: See TracBrowser for help on using the repository browser.