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

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

minor changes

File size: 46.2 KB
Line 
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 *
13 * Changes:
14 *
15 * -----------------------------------------------------------------------*/
16
17#include <newmatio.h>
18#include <iomanip>
19#include <sstream>
20#include <map>
21
22#include "bnccomb.h"
23#include <combination/bncbiassnx.h>
24#include "bnccore.h"
25#include "upload/bncrtnetdecoder.h"
26#include "bncsettings.h"
27#include "bncutils.h"
28#include "bncantex.h"
29#include "t_prn.h"
30
31const double sig0_offAC = 1000.0;
32const double sig0_offACSat = 100.0;
33const double sigP_offACSat = 0.01;
34const double sig0_clkSat = 100.0;
35
36const double sigObs = 0.05;
37
38using namespace std;
39
40// Constructor
41////////////////////////////////////////////////////////////////////////////
42bncComb::cmbParam::cmbParam(parType type_, int index_, const QString& ac_, const QString& prn_) {
43
44 type = type_;
45 index = index_;
46 AC = ac_;
47 prn = prn_;
48 xx = 0.0;
49 eph = 0;
50
51 if (type == offACgnss) {
52 epoSpec = true;
53 sig0 = sig0_offAC;
54 sigP = sig0;
55 }
56 else if (type == offACSat) {
57 epoSpec = false;
58 sig0 = sig0_offACSat;
59 sigP = sigP_offACSat;
60 }
61 else if (type == clkSat) {
62 epoSpec = true;
63 sig0 = sig0_clkSat;
64 sigP = sig0;
65 }
66}
67
68// Destructor
69////////////////////////////////////////////////////////////////////////////
70bncComb::cmbParam::~cmbParam() {
71}
72
73// Partial
74////////////////////////////////////////////////////////////////////////////
75double bncComb::cmbParam::partial(char sys, const QString& AC_, const QString& prn_) {
76
77 if (type == offACgnss) {
78 if (AC == AC_ && prn_[0].toLatin1() == sys) {
79 return 1.0;
80 }
81 }
82 else if (type == offACSat) {
83 if (AC == AC_ && prn == prn_) {
84 return 1.0;
85 }
86 }
87 else if (type == clkSat) {
88 if (prn == prn_) {
89 return 1.0;
90 }
91 }
92
93 return 0.0;
94}
95
96//
97////////////////////////////////////////////////////////////////////////////
98QString bncComb::cmbParam::toString(char sys) const {
99
100 QString outStr;
101
102 if (type == offACgnss) {
103 outStr = "AC Offset " + AC + " " + sys + " ";
104 }
105 else if (type == offACSat) {
106 outStr = "Sat Offset " + AC + " " + prn.mid(0,3);
107 }
108 else if (type == clkSat) {
109 outStr = "Clk Corr " + prn.mid(0,3);
110 }
111
112 return outStr;
113}
114
115// Singleton: definition class variable
116////////////////////////////////////////////////////////////////////////////
117bncComb* bncComb::instance = nullptr;
118
119
120// Constructor
121////////////////////////////////////////////////////////////////////////////
122bncComb::bncComb() : _ephUser(true) {
123
124 bncSettings settings;
125
126 _running = true;
127
128 QStringList cmbStreams = settings.value("cmbStreams").toStringList();
129
130 _cmbSampl = settings.value("cmbSampl").toInt();
131 if (_cmbSampl <= 0) {
132 _cmbSampl = 5;
133 }
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 }
169
170 if (cmbStreams.size() >= 1 && !cmbStreams[0].isEmpty()) {
171 QListIterator<QString> it(cmbStreams);
172 while (it.hasNext()) {
173 QStringList hlp = it.next().split(" ");
174 cmbAC* newAC = new cmbAC();
175 newAC->mountPoint = hlp[0];
176 newAC->name = hlp[1];
177 newAC->weightFactor = hlp[2].toDouble();
178 newAC->isAPC = bool(newAC->mountPoint.mid(0,4) == "SSRA");
179 QMapIterator<char, unsigned> itSys(_cmbSysPrn);
180 // init
181 while (itSys.hasNext()) {
182 itSys.next();
183 char sys = itSys.key();
184 if (!_masterOrbitAC.contains(sys)) {
185 _masterOrbitAC[sys] = newAC->name;
186 _masterIsAPC[sys] = newAC->isAPC;
187 }
188 }
189 _ACs.append(newAC);
190 }
191 }
192
193 QString ssrFormat;
194 _ssrCorr = 0;
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 }
208 else { // default
209 _ssrCorr = new SsrCorrIgs();
210 }
211
212 _rtnetDecoder = 0;
213
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>)));
219
220 // Combination Method
221 // ------------------
222 if (settings.value("cmbMethod").toString() == "Single-Epoch") {
223 _method = singleEpoch;
224 }
225 else {
226 _method = filter;
227 }
228
229 // Initialize Parameters (model: Clk_Corr = AC_Offset + Sat_Offset + Clk)
230 // ----------------------------------------------------------------------
231 if (_method == filter) {
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;
242 }
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));
251 }
252 }
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));
256 }
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 }
265 }
266 }
267
268 // ANTEX File
269 // ----------
270 _antex = 0;
271 QString antexFileName = settings.value("uploadAntexFile").toString();
272 if (!antexFileName.isEmpty()) {
273 _antex = new bncAntex();
274 if (_antex->readFile(antexFileName) != success) {
275 emit newMessage("bncCmb: wrong ANTEX file", true);
276 delete _antex;
277 _antex = 0;
278 }
279 }
280
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) {
289 emit newMessage("bncComb: wrong Bias SINEX file", true);
290 delete _bsx;
291 _bsx = 0;
292 }
293 }
294 if (_bsx) {
295 _ms = 3.0 * 3600 * 1000.0;
296 QTimer::singleShot(_ms, this, SLOT(slotReadBiasSnxFile()));
297 }
298
299 // Maximal Residuum
300 // ----------------
301 _MAXRES = settings.value("cmbMaxres").toDouble();
302 if (_MAXRES <= 0.0) {
303 _MAXRES = 999.0;
304 }
305 _newCorr = 0;
306}
307
308// Destructor
309////////////////////////////////////////////////////////////////////////////
310bncComb::~bncComb() {
311
312 _running = false;
313#ifndef WIN32
314 sleep(2);
315#else
316 Sleep( 2000);
317#endif
318
319 QListIterator<cmbAC*> icAC(_ACs);
320 while (icAC.hasNext()) {
321 delete icAC.next();
322 }
323 _ACs.clear();
324
325 delete _rtnetDecoder;
326
327 if (_ssrCorr) {
328 delete _ssrCorr;
329 }
330
331 if (_newCorr) {
332 delete _newCorr;
333 }
334
335 delete _antex;
336 delete _bsx;
337
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 }
345 _buffer.remove(sys);
346 }
347 _params.clear();
348 _buffer.clear();
349 _cmbSysPrn.clear();
350
351 while (!_epoClkData.empty()) {
352 delete _epoClkData.front();
353 _epoClkData.pop_front();
354 }
355}
356
357void bncComb::slotReadBiasSnxFile() {
358 bncSettings settings;
359 QString bsxFileName = settings.value("cmbBsxFile").toString();
360
361 if (bsxFileName.isEmpty()) {
362 emit newMessage("bncComb: no Bias SINEX file specified", true);
363 return;
364 }
365 if (!_bsx) {
366 _bsx = new bncBiasSnx();
367 }
368 if (_bsx->readFile(bsxFileName) != success) {
369 emit newMessage("bncComb: wrong Bias SINEX file", true);
370 delete _bsx;
371 _bsx = 0;
372 }
373 else {
374 emit newMessage("bncComb: successfully read Bias SINEX file", true);
375 }
376
377 QTimer::singleShot(_ms, this, SLOT(slotReadBiasSnxFile()));
378}
379
380
381// Remember orbit corrections
382////////////////////////////////////////////////////////////////////////////
383void bncComb::slotNewOrbCorrections(QList<t_orbCorr> orbCorrections) {
384 QMutexLocker locker(&_mutex);
385 for (int ii = 0; ii < orbCorrections.size(); ii++) {
386 t_orbCorr& orbCorr = orbCorrections[ii];
387 QString staID(orbCorr._staID.c_str());
388 char sys = orbCorr._prn.system();
389
390 if (!_cmbSysPrn.contains(sys)){
391 continue;
392 }
393
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 }
404 }
405 if (acName.isEmpty()) {
406 continue;
407 }
408
409 // Store the correction
410 // --------------------
411 QMap<t_prn, t_orbCorr>& storage = _orbCorrections[acName];
412 storage[orbCorr._prn] = orbCorr;
413 }
414}
415
416// Remember Satellite Code Biases
417////////////////////////////////////////////////////////////////////////////
418void bncComb::slotNewCodeBiases(QList<t_satCodeBias> satCodeBiases) {
419 QMutexLocker locker(&_mutex);
420
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();
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 // --------------------
447 QMap<t_prn, t_satCodeBias>& storage = _satCodeBiases[acName];
448 storage[satCodeBias._prn] = satCodeBias;
449 }
450
451}
452
453// Process clock corrections
454////////////////////////////////////////////////////////////////////////////
455void bncComb::slotNewClkCorrections(QList<t_clkCorr> clkCorrections) {
456 QMutexLocker locker(&_mutex);
457 const double outWait = 1.0 * _cmbSampl;
458 int currentWeek = 0;
459 double currentSec = 0.0;
460 currentGPSWeeks(currentWeek, currentSec);
461 bncTime currentTime(currentWeek, currentSec);
462
463 // Loop over all observations (possible different epochs)
464 // -----------------------------------------------------
465 for (int ii = 0; ii < clkCorrections.size(); ii++) {
466 t_clkCorr& newClk = clkCorrections[ii];
467 char sys = newClk._prn.system();
468 if (!_cmbSysPrn.contains(sys)){
469 continue;
470 }
471
472 // Check Modulo Time
473 // -----------------
474 int sec = int(nint(newClk._time.gpssec()*10));
475 if (sec % (_cmbSampl*10) != 0.0) {
476 continue;
477 }
478
479 // Find/Check the AC Name
480 // ----------------------
481 QString acName;
482 bool isAPC;
483 QString staID(newClk._staID.c_str());
484 QListIterator<cmbAC*> icAC(_ACs);
485 while (icAC.hasNext()) {
486 cmbAC* AC = icAC.next();
487 if (AC->mountPoint == staID) {
488 acName = AC->name;
489 isAPC = AC->isAPC;
490 break;
491 }
492 }
493 if (acName.isEmpty() || isAPC != _masterIsAPC[sys]) {
494 continue;
495 }
496
497 // Check regarding current time
498 // ----------------------------
499 if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
500 if ((newClk._time >= currentTime) || // future time stamp
501 (currentTime - newClk._time) > 60.0) { // very old data sets
502 #ifdef BNC_DEBUG_CMB
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" +
505 QString(" %1 ").arg(currentTime.timestr().c_str()).toLatin1(), true);
506 #endif
507 continue;
508 }
509 }
510
511 // Check Correction Age
512 // --------------------
513 if (_resTime.valid() && newClk._time <= _resTime) {
514#ifdef BNC_DEBUG_CMB
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" +
517 QString(" %1 ").arg(_resTime.timestr().c_str()).toLatin1(), true);
518#endif
519 continue;
520 }
521
522 // Set the last time
523 // -----------------
524 if (_lastClkCorrTime.undef() || newClk._time > _lastClkCorrTime) {
525 _lastClkCorrTime = newClk._time;
526 }
527
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++) {
533 if (newClk._time == (*it)->_time) {
534 epoch = *it;
535 break;
536 }
537 }
538 if (epoch == 0) {
539 if (_epoClkData.empty() || newClk._time > _epoClkData.back()->_time) {
540 epoch = new epoClkData;
541 epoch->_time = newClk._time;
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 // ---------------------------------------------------
555 const unsigned MAX_EPODATA_SIZE = 60.0 / _cmbSampl;
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
565 if (!_lastClkCorrTime.valid()) {
566 return;
567 }
568
569 const vector<t_clkCorr>& clkCorrVec = _epoClkData.front()->_clkCorr;
570
571 bncTime epoTime = _epoClkData.front()->_time;
572
573 if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
574 if ((currentTime - epoTime) > 60.0) {
575 delete _epoClkData.front();
576 _epoClkData.pop_front();
577 continue;
578 }
579 }
580 // Process the front epoch
581 // -----------------------
582 if (epoTime < (_lastClkCorrTime - outWait)) {
583 _resTime = epoTime;
584 processEpoch(_resTime, clkCorrVec);
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
632 corr->_orbCorr._xr += dRAO;
633 corr->_orbCorr._dotXr += dDotRAO;
634 corr->_clkCorr._dClk -= dC;
635}
636
637// Process Epoch
638////////////////////////////////////////////////////////////////////////////
639void bncComb::processEpoch(bncTime epoTime, const vector<t_clkCorr>& clkCorrVec) {
640
641 for (unsigned ii = 0; ii < clkCorrVec.size(); ii++) {
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();
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
661 // Create new correction
662 // ---------------------
663 _newCorr = new cmbCorr();
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;
670
671 // Check orbit correction
672 // ----------------------
673 if (!_orbCorrections.contains(acName)) {
674 delete _newCorr; _newCorr = 0;
675 continue;
676 }
677 else {
678 QMap<t_prn, t_orbCorr>& storage = _orbCorrections[acName];
679 if (!storage.contains(clkCorr._prn) ||
680 storage[clkCorr._prn]._iod != _newCorr->_iod) {
681 delete _newCorr; _newCorr = 0;
682 continue;
683 }
684 else {
685 _newCorr->_orbCorr = storage[clkCorr._prn];
686 }
687 }
688
689 // Check the Ephemeris
690 //--------------------
691 t_eph* ephLast = _ephUser.ephLast(prn);
692 t_eph* ephPrev = _ephUser.ephPrev(prn);
693 if (ephLast == 0) {
694#ifdef BNC_DEBUG_CMB
695 emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1(), true);
696#endif
697 delete _newCorr; _newCorr = 0;
698 continue;
699 }
700 else if (ephLast->checkState() == t_eph::bad ||
701 ephLast->checkState() == t_eph::outdated ||
702 ephLast->checkState() == t_eph::unhealthy) {
703#ifdef BNC_DEBUG_CMB
704 emit newMessage("bncComb: ephLast not ok (checkState: " + ephLast->checkStateToString().toLatin1() + ") for " + prn.mid(0,3).toLatin1(), true);
705#endif
706 delete _newCorr; _newCorr = 0;
707 continue;
708 }
709 else {
710 if (ephLast->IOD() == _newCorr->_iod) {
711 _newCorr->_eph = ephLast;
712 }
713 else if (ephPrev && ephPrev->checkState() == t_eph::ok &&
714 ephPrev->IOD() == _newCorr->_iod) {
715 _newCorr->_eph = ephPrev;
716 switchToLastEph(ephLast, _newCorr);
717 }
718 else {
719#ifdef BNC_DEBUG_CMB
720 emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1() +
721 QString(" with IOD %1").arg(_newCorr->_iod).toLatin1(), true);
722#endif
723 delete _newCorr; _newCorr = 0;
724 continue;
725 }
726 }
727
728 // Check satellite code biases
729 // ----------------------------
730 if (_satCodeBiases.contains(acName)) {
731 QMap<t_prn, t_satCodeBias>& storage = _satCodeBiases[acName];
732 if (storage.contains(clkCorr._prn)) {
733 _newCorr->_satCodeBias = storage[clkCorr._prn];
734 QMap<t_frequency::type, double> codeBiasesRefSig;
735 for (unsigned ii = 1; ii < cmbRefSig::cIF; ii++) {
736 t_frequency::type frqType = cmbRefSig::toFreq(sys, static_cast<cmbRefSig::type>(ii));
737 char frqNum = t_frequency::toString(frqType)[1];
738 char attrib = cmbRefSig::toAttrib(sys, static_cast<cmbRefSig::type>(ii));
739 QString rnxType2ch = QString("%1%2").arg(frqNum).arg(attrib);
740 for (unsigned ii = 0; ii < _newCorr->_satCodeBias._bias.size(); ii++) {
741 const t_frqCodeBias& bias = _newCorr->_satCodeBias._bias[ii];
742 if (rnxType2ch.toStdString() == bias._rnxType2ch) {
743 codeBiasesRefSig[frqType] = bias._value;
744 }
745 }
746 }
747 if (codeBiasesRefSig.size() == 2) {
748 map<t_frequency::type, double> codeCoeff;
749 double channel = double(_newCorr->_eph->slotNum());
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;
754 _newCorr->_satCodeBiasIF += it->second * codeBiasesRefSig[frqType];
755 }
756 }
757 _newCorr->_satCodeBias._bias.clear();
758 }
759 }
760
761 // Store correction into the buffer
762 // --------------------------------
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;
770 if (_newCorr->_acName == acName &&
771 _newCorr->_prn == prn) {
772 available = true;
773 }
774 }
775
776 if (!available) {
777 corrs.push_back(_newCorr); _newCorr = 0;
778 }
779 else {
780 delete _newCorr; _newCorr = 0;
781 continue;
782 }
783 }
784
785 // Process Systems of this Epoch
786 // ------------------------------
787 QMapIterator<char, unsigned> itSys(_cmbSysPrn);
788 while (itSys.hasNext()) {
789 itSys.next();
790 char sys = itSys.key();
791 _log.clear();
792 QTextStream out(&_log, QIODevice::WriteOnly);
793 processSystem(epoTime, sys, out);
794 _buffer.remove(sys);
795 emit newMessage(_log, false);
796 }
797}
798
799void bncComb::processSystem(bncTime epoTime, char sys, QTextStream& out) {
800
801 out << "\n" << "Combination: " << sys << "\n"
802 << "--------------------------------" << "\n";
803
804 // Observation Statistics
805 // ----------------------
806 bool masterPresent = false;
807 QListIterator<cmbAC*> icAC(_ACs);
808 while (icAC.hasNext()) {
809 cmbAC* AC = icAC.next();
810 AC->numObs[sys] = 0;
811 QVectorIterator<cmbCorr*> itCorr(corrs(sys));
812 while (itCorr.hasNext()) {
813 cmbCorr* corr = itCorr.next();
814 if (corr->_acName == AC->name) {
815 AC->numObs[sys] += 1;
816 if (AC->name == _masterOrbitAC[sys]) {
817 masterPresent = true;
818 }
819 }
820 }
821 out << AC->name.toLatin1().data() << ": " << AC->numObs[sys] << "\n";
822 }
823
824 // If Master not present, switch to another one
825 // --------------------------------------------
826 const unsigned switchMasterAfterGap = 1;
827 if (masterPresent) {
828 _masterMissingEpochs[sys] = 0;
829 }
830 else {
831 ++_masterMissingEpochs[sys];
832 if (_masterMissingEpochs[sys] < switchMasterAfterGap) {
833 out << "Missing Master, Epoch skipped" << "\n";
834 _buffer.remove(sys);
835 emit newMessage(_log, false);
836 return;
837 }
838 else {
839 _masterMissingEpochs[sys] = 0;
840 QListIterator<cmbAC*> icAC(_ACs);
841 while (icAC.hasNext()) {
842 cmbAC* AC = icAC.next();
843 if (AC->numObs[sys] > 0) {
844 out << "Switching Master AC "
845 << _masterOrbitAC[sys].toLatin1().data() << " --> "
846 << AC->name.toLatin1().data() << " "
847 << epoTime.datestr().c_str() << " "
848 << epoTime.timestr().c_str() << "\n";
849 _masterOrbitAC[sys] = AC->name;
850 _masterIsAPC[sys] = AC->isAPC;
851 break;
852 }
853 }
854 }
855 }
856
857 QMap<QString, cmbCorr*> resCorr;
858
859 // Perform the actual Combination using selected Method
860 // ----------------------------------------------------
861 t_irc irc;
862 ColumnVector dx;
863 if (_method == filter) {
864 irc = processEpoch_filter(epoTime, sys, out, resCorr, dx);
865 }
866 else {
867 irc = processEpoch_singleEpoch(epoTime, sys, out, resCorr, dx);
868 }
869
870 // Update Parameter Values, Print Results
871 // --------------------------------------
872 if (irc == success) {
873 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
874 cmbParam* pp = _params[sys][iPar-1];
875 pp->xx += dx(iPar);
876 if (pp->type == cmbParam::clkSat) {
877 if (resCorr.find(pp->prn) != resCorr.end()) {
878 // set clock result
879 resCorr[pp->prn]->_dClkResult = pp->xx / t_CST::c;
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 }
889 }
890 }
891 out << epoTime.datestr().c_str() << " "
892 << epoTime.timestr().c_str() << " ";
893 out.setRealNumberNotation(QTextStream::FixedNotation);
894 out.setFieldWidth(8);
895 out.setRealNumberPrecision(4);
896 out << pp->toString(sys) << " "
897 << pp->xx << " +- " << sqrt(_QQ[sys](pp->index,pp->index)) << "\n";
898 out.setFieldWidth(0);
899 }
900 printResults(epoTime, out, resCorr);
901 dumpResults(epoTime, resCorr);
902 }
903}
904
905// Process Epoch - Filter Method
906////////////////////////////////////////////////////////////////////////////
907t_irc bncComb::processEpoch_filter(bncTime epoTime, char sys, QTextStream& out,
908 QMap<QString, cmbCorr*>& resCorr,
909 ColumnVector& dx) {
910
911 // Prediction Step
912 // ---------------
913 int nPar = _params[sys].size();
914 ColumnVector x0(nPar);
915 for (int iPar = 1; iPar <= nPar; iPar++) {
916 cmbParam* pp = _params[sys][iPar-1];
917 if (pp->epoSpec) {
918 pp->xx = 0.0;
919 _QQ[sys].Row(iPar) = 0.0;
920 _QQ[sys].Column(iPar) = 0.0;
921 _QQ[sys](iPar,iPar) = pp->sig0 * pp->sig0;
922 }
923 else {
924 _QQ[sys](iPar,iPar) += pp->sigP * pp->sigP;
925 }
926 x0(iPar) = pp->xx;
927 }
928
929 // Check Satellite Positions for Outliers
930 // --------------------------------------
931 if (checkOrbits(epoTime, sys, out) != success) {
932 return failure;
933 }
934
935 // Update and outlier detection loop
936 // ---------------------------------
937 SymmetricMatrix QQ_sav = _QQ[sys];
938 while (_running) {
939
940 Matrix AA;
941 ColumnVector ll;
942 DiagonalMatrix PP;
943
944 if (createAmat(sys, AA, ll, PP, x0, resCorr) != success) {
945 return failure;
946 }
947
948 dx.ReSize(nPar); dx = 0.0;
949 kalman(AA, ll, PP, _QQ[sys], dx);
950
951 ColumnVector vv = ll - AA * dx;
952
953 int maxResIndex;
954 double maxRes = vv.maximum_absolute_value1(maxResIndex);
955 out.setRealNumberNotation(QTextStream::FixedNotation);
956 out.setRealNumberPrecision(3);
957 out << epoTime.datestr().c_str() << " " << epoTime.timestr().c_str()
958 << " Maximum Residuum " << maxRes << ' '
959 << corrs(sys)[maxResIndex-1]->_acName << ' ' << corrs(sys)[maxResIndex-1]->_prn.mid(0,3);
960 if (maxRes > _MAXRES) {
961 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
962 cmbParam* pp = _params[sys][iPar-1];
963 if (pp->type == cmbParam::offACSat &&
964 pp->AC == corrs(sys)[maxResIndex-1]->_acName &&
965 pp->prn == corrs(sys)[maxResIndex-1]->_prn.mid(0,3)) {
966 QQ_sav.Row(iPar) = 0.0;
967 QQ_sav.Column(iPar) = 0.0;
968 QQ_sav(iPar,iPar) = pp->sig0 * pp->sig0;
969 }
970 }
971
972 out << " Outlier" << "\n";
973 _QQ[sys] = QQ_sav;
974 delete corrs(sys)[maxResIndex-1];
975 corrs(sys).remove(maxResIndex-1);
976 }
977 else {
978 out << " OK" << "\n";
979 out.setRealNumberNotation(QTextStream::FixedNotation);
980 out.setRealNumberPrecision(4);
981 for (int ii = 0; ii < corrs(sys).size(); ii++) {
982 const cmbCorr* corr = corrs(sys)[ii];
983 out << epoTime.datestr().c_str() << ' '
984 << epoTime.timestr().c_str() << " "
985 << corr->_acName << ' ' << corr->_prn.mid(0,3);
986 out.setFieldWidth(10);
987 out << " res = " << vv[ii] << "\n";
988 out.setFieldWidth(0);
989 }
990 break;
991 }
992 }
993
994 return success;
995}
996
997// Print results
998////////////////////////////////////////////////////////////////////////////
999void bncComb::printResults(bncTime epoTime, QTextStream& out,
1000 const QMap<QString, cmbCorr*>& resCorr) {
1001
1002 QMapIterator<QString, cmbCorr*> it(resCorr);
1003 while (it.hasNext()) {
1004 it.next();
1005 cmbCorr* corr = it.value();
1006 const t_eph* eph = corr->_eph;
1007 if (eph) {
1008 ColumnVector xc(6);
1009 ColumnVector vv(3);
1010 if (eph->getCrd(epoTime, xc, vv, false) != success) {
1011 continue;
1012 }
1013 out << epoTime.datestr().c_str() << " "
1014 << epoTime.timestr().c_str() << " ";
1015 out.setFieldWidth(3);
1016 out << "Full Clock " << corr->_prn.mid(0,3) << " " << corr->_iod << " ";
1017 out.setFieldWidth(14);
1018 out << (xc(4) + corr->_dClkResult) * t_CST::c << "\n";
1019 out.setFieldWidth(0);
1020 }
1021 else {
1022 out << "bncComb::printResults bug" << "\n";
1023 }
1024 out.flush();
1025 }
1026}
1027
1028// Send results to RTNet Decoder and directly to PPP Client
1029////////////////////////////////////////////////////////////////////////////
1030void bncComb::dumpResults(bncTime epoTime, QMap<QString, cmbCorr*>& resCorr) {
1031
1032 QList<t_orbCorr> orbCorrections;
1033 QList<t_clkCorr> clkCorrections;
1034 QList<t_satCodeBias> satCodeBiasList;
1035
1036 unsigned year, month, day, hour, minute;
1037 double sec;
1038 epoTime.civil_date(year, month, day);
1039 epoTime.civil_time(hour, minute, sec);
1040
1041 QString outLines = QString().asprintf("* %4d %2d %2d %d %d %12.8f\n",
1042 year, month, day, hour, minute, sec);
1043
1044 QMutableMapIterator<QString, cmbCorr*> it(resCorr);
1045 while (it.hasNext()) {
1046 it.next();
1047 cmbCorr* corr = it.value();
1048
1049 // ORBIT
1050 t_orbCorr orbCorr(corr->_orbCorr);
1051 orbCorr._staID = "INTERNAL";
1052 orbCorrections.push_back(orbCorr);
1053
1054 // CLOCK
1055 t_clkCorr clkCorr(corr->_clkCorr);
1056 clkCorr._staID = "INTERNAL";
1057 clkCorr._dClk = corr->_dClkResult;
1058 clkCorr._dotDClk = 0.0;
1059 clkCorr._dotDotDClk = 0.0;
1060 clkCorrections.push_back(clkCorr);
1061
1062 ColumnVector xc(6);
1063 ColumnVector vv(3);
1064 corr->_eph->setClkCorr(dynamic_cast<const t_clkCorr*>(&clkCorr));
1065 corr->_eph->setOrbCorr(dynamic_cast<const t_orbCorr*>(&orbCorr));
1066 if (corr->_eph->getCrd(epoTime, xc, vv, true) != success) {
1067 delete corr;
1068 it.remove();
1069 continue;
1070 }
1071
1072 // Correction Phase Center --> CoM
1073 // -------------------------------
1074 ColumnVector dx(3); dx = 0.0;
1075 ColumnVector apc(3); apc = 0.0;
1076 ColumnVector com(3); com = 0.0;
1077 bool masterIsAPC = true;
1078 if (_antex) {
1079 double Mjd = epoTime.mjd() + epoTime.daysec()/86400.0;
1080 char sys = corr->_eph->prn().system();
1081 masterIsAPC = _masterIsAPC[sys];
1082 if (_antex->satCoMcorrection(corr->_prn, Mjd, xc.Rows(1,3), dx) != success) {
1083 dx = 0;
1084 _log += "antenna not found " + corr->_prn.mid(0,3).toLatin1() + '\n';
1085 }
1086 }
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 }
1103
1104 outLines += corr->_prn.mid(0,3);
1105 QString hlp = QString().asprintf(
1106 " APC 3 %15.4f %15.4f %15.4f"
1107 " Clk 1 %15.4f"
1108 " Vel 3 %15.4f %15.4f %15.4f"
1109 " CoM 3 %15.4f %15.4f %15.4f",
1110 apc(1), apc(2), apc(3),
1111 xc(4) * t_CST::c,
1112 vv(1), vv(2), vv(3),
1113 com(1), com(2), com(3));
1114 outLines += hlp;
1115 hlp.clear();
1116
1117 // CODE BIASES
1118 if (corr->_satCodeBias._bias.size()) {
1119 t_satCodeBias satCodeBias(corr->_satCodeBias);
1120 satCodeBias._staID = "INTERNAL";
1121 satCodeBiasList.push_back(satCodeBias);
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";
1135 delete corr;
1136 it.remove();
1137 }
1138
1139 outLines += "EOE\n"; // End Of Epoch flag
1140 //cout << outLines.toStdString();
1141
1142 if (!_rtnetDecoder) {
1143 _rtnetDecoder = new bncRtnetDecoder();
1144 }
1145
1146 vector<string> errmsg;
1147 _rtnetDecoder->Decode(outLines.toLatin1().data(), outLines.length(), errmsg);
1148
1149 // Send new Corrections to PPP etc.
1150 // --------------------------------
1151 if (orbCorrections.size() > 0 && clkCorrections.size() > 0) {
1152 emit newOrbCorrections(orbCorrections);
1153 emit newClkCorrections(clkCorrections);
1154 }
1155 if (satCodeBiasList.size()) {
1156 emit newCodeBiases(satCodeBiasList);
1157 }
1158}
1159
1160// Create First Design Matrix and Vector of Measurements
1161////////////////////////////////////////////////////////////////////////////
1162t_irc bncComb::createAmat(char sys, Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP,
1163 const ColumnVector& x0, QMap<QString, cmbCorr*>& resCorr) {
1164
1165 unsigned nPar = _params[sys].size();
1166 unsigned nObs = corrs(sys).size();
1167
1168 if (nObs == 0) {
1169 return failure;
1170 }
1171
1172 int maxSat = _cmbSysPrn[sys];
1173
1174 const int nCon = (_method == filter) ? 1 + maxSat : 0;
1175
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;
1181 QVectorIterator<cmbCorr*> itCorr(corrs(sys));
1182 while (itCorr.hasNext()) {
1183 cmbCorr* corr = itCorr.next();
1184 QString prn = corr->_prn;
1185
1186 ++iObs;
1187
1188 if (corr->_acName == _masterOrbitAC[sys] && resCorr.find(prn) == resCorr.end()) {
1189 resCorr[prn] = new cmbCorr(*corr);
1190 }
1191
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);
1195 }
1196
1197 ll(iObs) = (corr->_clkCorr._dClk * t_CST::c - corr->_satCodeBiasIF) - DotProduct(AA.Row(iObs), x0);
1198
1199 PP(iObs, iObs) *= 1.0 / (corr->_weightFactor * corr->_weightFactor);
1200 }
1201
1202 // Regularization
1203 // --------------
1204 if (_method == filter) {
1205 const double Ph = 1.e6;
1206 PP(nObs+1) = Ph;
1207 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
1208 cmbParam* pp = _params[sys][iPar-1];
1209 if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
1210 pp->type == cmbParam::clkSat ) {
1211 AA(nObs+1, iPar) = 1.0;
1212 }
1213 }
1214 unsigned flag = 0;
1215 if (sys == 'E') {
1216 flag = 1;
1217 }
1218// if (sys == 'R') {
1219// return success;
1220// }
1221 int iCond = 1;
1222 // GNSS
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);
1225 ++iCond;
1226 PP(nObs+iCond) = Ph;
1227 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
1228 cmbParam* pp = _params[sys][iPar-1];
1229 if ( pp &&
1230 AA.Column(iPar).maximum_absolute_value() > 0.0 &&
1231 pp->type == cmbParam::offACSat &&
1232 pp->prn == prn) {
1233 AA(nObs+iCond, iPar) = 1.0;
1234 }
1235 }
1236 }
1237 }
1238
1239 return success;
1240}
1241
1242// Process Epoch - Single-Epoch Method
1243////////////////////////////////////////////////////////////////////////////
1244t_irc bncComb::processEpoch_singleEpoch(bncTime epoTime, char sys, QTextStream& out,
1245 QMap<QString, cmbCorr*>& resCorr,
1246 ColumnVector& dx) {
1247
1248 // Check Satellite Positions for Outliers
1249 // --------------------------------------
1250 if (checkOrbits(epoTime, sys, out) != success) {
1251 return failure;
1252 }
1253
1254 // Outlier Detection Loop
1255 // ----------------------
1256 while (_running) {
1257
1258 // Remove Satellites that are not in Master
1259 // ----------------------------------------
1260 QMutableVectorIterator<cmbCorr*> it(corrs(sys));
1261 while (it.hasNext()) {
1262 cmbCorr* corr = it.next();
1263 QString prn = corr->_prn;
1264 bool foundMaster = false;
1265 QVectorIterator<cmbCorr*> itHlp(corrs(sys));
1266 while (itHlp.hasNext()) {
1267 cmbCorr* corrHlp = itHlp.next();
1268 QString prnHlp = corrHlp->_prn;
1269 QString ACHlp = corrHlp->_acName;
1270 if (ACHlp == _masterOrbitAC[sys] && prn == prnHlp) {
1271 foundMaster = true;
1272 break;
1273 }
1274 }
1275 if (!foundMaster) {
1276 delete corr;
1277 it.remove();
1278 }
1279 }
1280
1281 // Count Number of Observations per Satellite and per AC
1282 // -----------------------------------------------------
1283 QMap<QString, int> numObsPrn;
1284 QMap<QString, int> numObsAC;
1285 QVectorIterator<cmbCorr*> itCorr(corrs(sys));
1286 while (itCorr.hasNext()) {
1287 cmbCorr* corr = itCorr.next();
1288 QString prn = corr->_prn;
1289 QString AC = corr->_acName;
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 }
1302 }
1303
1304 // Clean-Up the Parameters
1305 // -----------------------
1306 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
1307 delete _params[sys][iPar-1];
1308 }
1309 _params[sys].clear();
1310
1311 // Set new Parameters
1312 // ------------------
1313 int nextPar = 0;
1314
1315 QMapIterator<QString, int> itAC(numObsAC);
1316 while (itAC.hasNext()) {
1317 itAC.next();
1318 const QString& AC = itAC.key();
1319 int numObs = itAC.value();
1320 if (AC != _masterOrbitAC[sys] && numObs > 0) {
1321 _params[sys].push_back(new cmbParam(cmbParam::offACgnss, ++nextPar, AC, ""));
1322 }
1323 }
1324
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) {
1331 _params[sys].push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
1332 }
1333 }
1334
1335 int nPar = _params[sys].size();
1336 ColumnVector x0(nPar);
1337 x0 = 0.0;
1338
1339 // Create First-Design Matrix
1340 // --------------------------
1341 Matrix AA;
1342 ColumnVector ll;
1343 DiagonalMatrix PP;
1344 if (createAmat(sys, AA, ll, PP, x0, resCorr) != success) {
1345 return failure;
1346 }
1347
1348 ColumnVector vv;
1349 try {
1350 Matrix ATP = AA.t() * PP;
1351 SymmetricMatrix NN; NN << ATP * AA;
1352 ColumnVector bb = ATP * ll;
1353 _QQ[sys] = NN.i();
1354 dx = _QQ[sys] * bb;
1355 vv = ll - AA * dx;
1356 }
1357 catch (Exception& exc) {
1358 out << exc.what() << "\n";
1359 return failure;
1360 }
1361
1362 int maxResIndex;
1363 double maxRes = vv.maximum_absolute_value1(maxResIndex);
1364 out.setRealNumberNotation(QTextStream::FixedNotation);
1365 out.setRealNumberPrecision(3);
1366 out << epoTime.datestr().c_str() << " " << epoTime.timestr().c_str()
1367 << " Maximum Residuum " << maxRes << ' '
1368 << corrs(sys)[maxResIndex-1]->_acName << ' ' << corrs(sys)[maxResIndex-1]->_prn.mid(0,3);
1369
1370 if (maxRes > _MAXRES) {
1371 out << " Outlier" << "\n";
1372 delete corrs(sys)[maxResIndex-1];
1373 corrs(sys).remove(maxResIndex-1);
1374 }
1375 else {
1376 out << " OK" << "\n";
1377 out.setRealNumberNotation(QTextStream::FixedNotation);
1378 out.setRealNumberPrecision(3);
1379 for (int ii = 0; ii < vv.Nrows(); ii++) {
1380 const cmbCorr* corr = corrs(sys)[ii];
1381 out << epoTime.datestr().c_str() << ' '
1382 << epoTime.timestr().c_str() << " "
1383 << corr->_acName << ' ' << corr->_prn.mid(0,3);
1384 out.setFieldWidth(6);
1385 out << " res = " << vv[ii] << "\n";
1386 out.setFieldWidth(0);
1387 }
1388 return success;
1389 }
1390
1391 }
1392
1393 return failure;
1394}
1395
1396// Check Satellite Positions for Outliers
1397////////////////////////////////////////////////////////////////////////////
1398t_irc bncComb::checkOrbits(bncTime epoTime, char sys, QTextStream& out) {
1399
1400 const double MAX_DISPLACEMENT_INIT = 0.50;
1401
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
1410 // Switch to last ephemeris (if possible)
1411 // --------------------------------------
1412 QMutableVectorIterator<cmbCorr*> im(corrs(sys));
1413 while (im.hasNext()) {
1414 cmbCorr* corr = im.next();
1415 QString prn = corr->_prn;
1416
1417 t_eph* ephLast = _ephUser.ephLast(prn);
1418 t_eph* ephPrev = _ephUser.ephPrev(prn);
1419
1420 if (ephLast == 0) {
1421 out << "checkOrbit: missing eph (not found) " << corr->_prn.mid(0,3) << "\n";
1422 delete corr;
1423 im.remove();
1424 }
1425 else if (corr->_eph == 0) {
1426 out << "checkOrbit: missing eph (zero) " << corr->_prn.mid(0,3) << "\n";
1427 delete corr;
1428 im.remove();
1429 }
1430 else {
1431 if ( corr->_eph == ephLast || corr->_eph == ephPrev ) {
1432 switchToLastEph(ephLast, corr);
1433 }
1434 else {
1435 out << "checkOrbit: missing eph (deleted) " << corr->_prn.mid(0,3) << "\n";
1436 delete corr;
1437 im.remove();
1438 }
1439 }
1440 }
1441
1442 while (_running) {
1443
1444 // Compute Mean Corrections for all Satellites
1445 // -------------------------------------------
1446 QMap<QString, int> numCorr;
1447 QMap<QString, ColumnVector> meanRao;
1448 QVectorIterator<cmbCorr*> it(corrs(sys));
1449 while (it.hasNext()) {
1450 cmbCorr* corr = it.next();
1451 QString prn = corr->_prn;
1452 if (meanRao.find(prn) == meanRao.end()) {
1453 meanRao[prn].ReSize(4);
1454 meanRao[prn].Rows(1,3) = corr->_orbCorr._xr;
1455 meanRao[prn](4) = 1;
1456 }
1457 else {
1458 meanRao[prn].Rows(1,3) += corr->_orbCorr._xr;
1459 meanRao[prn](4) += 1;
1460 }
1461 if (numCorr.find(prn) == numCorr.end()) {
1462 numCorr[prn] = 1;
1463 }
1464 else {
1465 numCorr[prn] += 1;
1466 }
1467 }
1468
1469 // Compute Differences wrt. Mean, find Maximum
1470 // -------------------------------------------
1471 QMap<QString, cmbCorr*> maxDiff;
1472 it.toFront();
1473 while (it.hasNext()) {
1474 cmbCorr* corr = it.next();
1475 QString prn = corr->_prn;
1476 if (meanRao[prn](4) != 0) {
1477 meanRao[prn] /= meanRao[prn](4);
1478 meanRao[prn](4) = 0;
1479 }
1480 corr->_diffRao = corr->_orbCorr._xr - meanRao[prn].Rows(1,3);
1481 if (maxDiff.find(prn) == maxDiff.end()) {
1482 maxDiff[prn] = corr;
1483 }
1484 else {
1485 double normMax = maxDiff[prn]->_diffRao.NormFrobenius();
1486 double norm = corr->_diffRao.NormFrobenius();
1487 if (norm > normMax) {
1488 maxDiff[prn] = corr;
1489 }
1490 }
1491 }
1492
1493 if (_ACs.size() == 1) {
1494 break;
1495 }
1496
1497 // Remove Outliers
1498 // ---------------
1499 bool removed = false;
1500 QMutableVectorIterator<cmbCorr*> im(corrs(sys));
1501 while (im.hasNext()) {
1502 cmbCorr* corr = im.next();
1503 QString prn = corr->_prn;
1504 if (numCorr[prn] < 2) {
1505 delete corr;
1506 im.remove();
1507 }
1508 else if (corr == maxDiff[prn]) {
1509 double norm = corr->_diffRao.NormFrobenius();
1510 if (norm > MAX_DISPLACEMENT) {
1511 out << epoTime.datestr().c_str() << " "
1512 << epoTime.timestr().c_str() << " "
1513 << "Orbit Outlier: "
1514 << corr->_acName.toLatin1().data() << " "
1515 << prn.mid(0,3).toLatin1().data() << " "
1516 << corr->_iod << " "
1517 << norm << "\n";
1518 delete corr;
1519 im.remove();
1520 removed = true;
1521 }
1522 }
1523 }
1524
1525 if (!removed) {
1526 break;
1527 }
1528 }
1529
1530 return success;
1531}
1532
1533//
1534////////////////////////////////////////////////////////////////////////////
1535void bncComb::slotProviderIDChanged(QString mountPoint) {
1536 QMutexLocker locker(&_mutex);
1537
1538 QTextStream out(&_log, QIODevice::WriteOnly);
1539
1540 // Find the AC Name
1541 // ----------------
1542 QString acName;
1543 QListIterator<cmbAC*> icAC(_ACs);
1544 while (icAC.hasNext()) {
1545 cmbAC *AC = icAC.next();
1546 if (AC->mountPoint == mountPoint) {
1547 acName = AC->name;
1548 out << "Provider ID changed: AC " << AC->name.toLatin1().data() << " "
1549 << _resTime.datestr().c_str() << " " << _resTime.timestr().c_str()
1550 << "\n";
1551 break;
1552 }
1553 }
1554 if (acName.isEmpty()) {
1555 return;
1556 }
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 // ----------------------------------------------
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();
1570 }
1571 }
1572 // Reset Satellite Offsets
1573 // -----------------------
1574 if (_method == filter) {
1575 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
1576 cmbParam *pp = _params[sys][iPar - 1];
1577 if (pp->AC == acName && pp->type == cmbParam::offACSat) {
1578 pp->xx = 0.0;
1579 _QQ[sys].Row(iPar) = 0.0;
1580 _QQ[sys].Column(iPar) = 0.0;
1581 _QQ[sys](iPar, iPar) = pp->sig0 * pp->sig0;
1582 }
1583 }
1584 }
1585 }
1586}
Note: See TracBrowser for help on using the repository browser.