source: ntrip/trunk/BNC/src/combination/bnccomb.cpp@ 5066

Last change on this file since 5066 was 5066, checked in by mervart, 11 years ago
File size: 31.4 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
21#include "bnccomb.h"
22#include "bncapp.h"
23#include "upload/bncrtnetdecoder.h"
24#include "bncsettings.h"
25#include "bncmodel.h"
26#include "bncutils.h"
27#include "bncpppclient.h"
28#include "bncsp3.h"
29#include "bncantex.h"
30#include "bnctides.h"
31
32const double sig0_offAC = 1000.0;
33const double sig0_offACSat = 100.0;
34const double sigP_offACSat = 0.01;
35const double sig0_clkSat = 100.0;
36
37const double sigObs = 0.05;
38
39const int MAXPRN_GLONASS = 24;
40
41using namespace std;
42
43// Constructor
44////////////////////////////////////////////////////////////////////////////
45cmbParam::cmbParam(parType type_, int index_,
46 const QString& ac_, const QString& prn_) {
47
48 type = type_;
49 index = index_;
50 AC = ac_;
51 prn = prn_;
52 xx = 0.0;
53 eph = 0;
54
55 if (type == offACgps) {
56 epoSpec = true;
57 sig0 = sig0_offAC;
58 sigP = sig0;
59 }
60 else if (type == offACglo) {
61 epoSpec = true;
62 sig0 = sig0_offAC;
63 sigP = sig0;
64 }
65 else if (type == offACSat) {
66 epoSpec = false;
67 sig0 = sig0_offACSat;
68 sigP = sigP_offACSat;
69 }
70 else if (type == clkSat) {
71 epoSpec = true;
72 sig0 = sig0_clkSat;
73 sigP = sig0;
74 }
75}
76
77// Destructor
78////////////////////////////////////////////////////////////////////////////
79cmbParam::~cmbParam() {
80}
81
82// Partial
83////////////////////////////////////////////////////////////////////////////
84double cmbParam::partial(const QString& AC_, const QString& prn_) {
85
86 if (type == offACgps) {
87 if (AC == AC_ && prn_[0] == 'G') {
88 return 1.0;
89 }
90 }
91 else if (type == offACglo) {
92 if (AC == AC_ && prn_[0] == 'R') {
93 return 1.0;
94 }
95 }
96 else if (type == offACSat) {
97 if (AC == AC_ && prn == prn_) {
98 return 1.0;
99 }
100 }
101 else if (type == clkSat) {
102 if (prn == prn_) {
103 return 1.0;
104 }
105 }
106
107 return 0.0;
108}
109
110//
111////////////////////////////////////////////////////////////////////////////
112QString cmbParam::toString() const {
113
114 QString outStr;
115
116 if (type == offACgps) {
117 outStr = "AC offset GPS " + AC;
118 }
119 else if (type == offACglo) {
120 outStr = "AC offset GLO " + AC;
121 }
122 else if (type == offACSat) {
123 outStr = "Sat Offset " + AC + " " + prn;
124 }
125 else if (type == clkSat) {
126 outStr = "Clk Corr " + prn;
127 }
128
129 return outStr;
130}
131
132// Constructor
133////////////////////////////////////////////////////////////////////////////
134bncComb::bncComb() {
135
136 bncSettings settings;
137
138 QStringList combineStreams = settings.value("combineStreams").toStringList();
139
140 _cmbSampl = settings.value("cmbSampl").toInt();
141 if (_cmbSampl <= 0) {
142 _cmbSampl = 10;
143 }
144
145 _masterMissingEpochs = 0;
146
147 if (combineStreams.size() >= 1 && !combineStreams[0].isEmpty()) {
148 QListIterator<QString> it(combineStreams);
149 while (it.hasNext()) {
150 QStringList hlp = it.next().split(" ");
151 cmbAC* newAC = new cmbAC();
152 newAC->mountPoint = hlp[0];
153 newAC->name = hlp[1];
154 newAC->weight = hlp[2].toDouble();
155 if (_masterOrbitAC.isEmpty()) {
156 _masterOrbitAC = newAC->name;
157 }
158 _ACs.append(newAC);
159 }
160 }
161
162 _rtnetDecoder = 0;
163
164 connect(this, SIGNAL(newMessage(QByteArray,bool)),
165 PGM_CORE, SLOT(slotMessage(const QByteArray,bool)));
166
167 // Combination Method
168 // ------------------
169 if (settings.value("cmbMethod").toString() == "Single-Epoch") {
170 _method = singleEpoch;
171 }
172 else {
173 _method = filter;
174 }
175
176 // Use Glonass
177 // -----------
178 if ( Qt::CheckState(settings.value("pppGLONASS").toInt()) == Qt::Checked) {
179 _useGlonass = true;
180 }
181 else {
182 _useGlonass = false;
183 }
184
185 // Initialize Parameters (model: Clk_Corr = AC_Offset + Sat_Offset + Clk)
186 // ----------------------------------------------------------------------
187 if (_method == filter) {
188 int nextPar = 0;
189 QListIterator<cmbAC*> it(_ACs);
190 while (it.hasNext()) {
191 cmbAC* AC = it.next();
192 _params.push_back(new cmbParam(cmbParam::offACgps, ++nextPar, AC->name, ""));
193 for (int iGps = 1; iGps <= MAXPRN_GPS; iGps++) {
194 QString prn = QString("G%1").arg(iGps, 2, 10, QChar('0'));
195 _params.push_back(new cmbParam(cmbParam::offACSat, ++nextPar,
196 AC->name, prn));
197 }
198 if (_useGlonass) {
199 _params.push_back(new cmbParam(cmbParam::offACglo, ++nextPar, AC->name, ""));
200 for (int iGlo = 1; iGlo <= MAXPRN_GLONASS; iGlo++) {
201 QString prn = QString("R%1").arg(iGlo, 2, 10, QChar('0'));
202 _params.push_back(new cmbParam(cmbParam::offACSat, ++nextPar,
203 AC->name, prn));
204 }
205 }
206 }
207 for (int iGps = 1; iGps <= MAXPRN_GPS; iGps++) {
208 QString prn = QString("G%1").arg(iGps, 2, 10, QChar('0'));
209 _params.push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
210 }
211 if (_useGlonass) {
212 for (int iGlo = 1; iGlo <= MAXPRN_GLONASS; iGlo++) {
213 QString prn = QString("R%1").arg(iGlo, 2, 10, QChar('0'));
214 _params.push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
215 }
216 }
217
218 // Initialize Variance-Covariance Matrix
219 // -------------------------------------
220 _QQ.ReSize(_params.size());
221 _QQ = 0.0;
222 for (int iPar = 1; iPar <= _params.size(); iPar++) {
223 cmbParam* pp = _params[iPar-1];
224 _QQ(iPar,iPar) = pp->sig0 * pp->sig0;
225 }
226 }
227
228 // ANTEX File
229 // ----------
230 _antex = 0;
231 QString antexFileName = settings.value("pppAntex").toString();
232 if (!antexFileName.isEmpty()) {
233 _antex = new bncAntex();
234 if (_antex->readFile(antexFileName) != success) {
235 emit newMessage("wrong ANTEX file", true);
236 delete _antex;
237 _antex = 0;
238 }
239 }
240
241 // Maximal Residuum
242 // ----------------
243 _MAXRES = settings.value("cmbMaxres").toDouble();
244 if (_MAXRES <= 0.0) {
245 _MAXRES = 999.0;
246 }
247}
248
249// Destructor
250////////////////////////////////////////////////////////////////////////////
251bncComb::~bncComb() {
252 QListIterator<cmbAC*> icAC(_ACs);
253 while (icAC.hasNext()) {
254 delete icAC.next();
255 }
256 delete _rtnetDecoder;
257 delete _antex;
258 for (int iPar = 1; iPar <= _params.size(); iPar++) {
259 delete _params[iPar-1];
260 }
261 QListIterator<bncTime> itTime(_buffer.keys());
262 while (itTime.hasNext()) {
263 bncTime epoTime = itTime.next();
264 _buffer.remove(epoTime);
265 }
266 QMapIterator<QString, cmbCorr*> itOrbCorr(_orbitCorrs);
267 while (itOrbCorr.hasNext()) {
268 itOrbCorr.next();
269 delete itOrbCorr.value();
270 }
271}
272
273// Read and store one correction line
274////////////////////////////////////////////////////////////////////////////
275void bncComb::processCorrLine(const QString& staID, const QString& line) {
276 QMutexLocker locker(&_mutex);
277
278 // Find the AC Name
279 // ----------------
280 QString acName;
281 QListIterator<cmbAC*> icAC(_ACs);
282 while (icAC.hasNext()) {
283 cmbAC* AC = icAC.next();
284 if (AC->mountPoint == staID) {
285 acName = AC->name;
286 break;
287 }
288 }
289 if (acName.isEmpty()) {
290 return;
291 }
292
293 // Read the Correction
294 // -------------------
295 cmbCorr* newCorr = new cmbCorr();
296 newCorr->acName = acName;
297 if (!newCorr->readLine(line) == success) {
298 delete newCorr;
299 return;
300 }
301
302 // Check Glonass
303 // -------------
304 if (!_useGlonass) {
305 if (newCorr->prn[0] == 'R') {
306 delete newCorr;
307 return;
308 }
309 }
310
311 // Save Orbit-Only Corrections
312 // ---------------------------
313 if (newCorr->tRao.valid() && !newCorr->tClk.valid()) {
314 QString corrID = newCorr->ID();
315 if (_orbitCorrs.find(corrID) != _orbitCorrs.end()) {
316 delete _orbitCorrs[corrID];
317 }
318 _orbitCorrs[corrID] = newCorr;
319 return;
320 }
321
322 // Merge with saved orbit correction
323 // ---------------------------------
324 else if (newCorr->tClk.valid() && !newCorr->tRao.valid()) {
325 QString corrID = newCorr->ID();
326 if (_orbitCorrs.find(corrID) != _orbitCorrs.end()) {
327 mergeOrbitCorr(_orbitCorrs[corrID], newCorr);
328 }
329 }
330
331 // Check Modulo Time
332 // -----------------
333 if (int(newCorr->tClk.gpssec()) % _cmbSampl != 0.0) {
334 delete newCorr;
335 return;
336 }
337
338 // Delete old corrections
339 // ----------------------
340 if (_resTime.valid() && newCorr->tClk <= _resTime) {
341 delete newCorr;
342 return;
343 }
344
345 // Check the Ephemeris
346 //--------------------
347 if (_eph.find(newCorr->prn) == _eph.end()) {
348 delete newCorr;
349 return;
350 }
351 else {
352 t_eph* lastEph = _eph[newCorr->prn]->last;
353 t_eph* prevEph = _eph[newCorr->prn]->prev;
354 if (lastEph && lastEph->IOD() == newCorr->iod) {
355 newCorr->eph = lastEph;
356 }
357 else if (lastEph && prevEph && prevEph->IOD() == newCorr->iod) {
358 newCorr->eph = prevEph;
359 switchToLastEph(lastEph, newCorr);
360 }
361 else {
362 delete newCorr;
363 return;
364 }
365 }
366
367 // Process previous Epoch(s)
368 // -------------------------
369 QListIterator<bncTime> itTime(_buffer.keys());
370 while (itTime.hasNext()) {
371 bncTime epoTime = itTime.next();
372 if (epoTime < newCorr->tClk - _cmbSampl) {
373 _resTime = epoTime;
374 processEpoch();
375 }
376 }
377
378 // Merge or add the correction
379 // ---------------------------
380 QVector<cmbCorr*>& corrs = _buffer[newCorr->tClk].corrs;
381 cmbCorr* existingCorr = 0;
382 QVectorIterator<cmbCorr*> itCorr(corrs);
383 while (itCorr.hasNext()) {
384 cmbCorr* hlp = itCorr.next();
385 if (hlp->prn == newCorr->prn && hlp->acName == newCorr->acName) {
386 existingCorr = hlp;
387 break;
388 }
389 }
390 if (existingCorr) {
391 delete newCorr; newCorr = 0;
392 existingCorr->readLine(line); // merge (multiple messages)
393
394 }
395 else {
396 corrs.append(newCorr);
397 }
398}
399
400// Change the correction so that it refers to last received ephemeris
401////////////////////////////////////////////////////////////////////////////
402void bncComb::switchToLastEph(const t_eph* lastEph, t_corr* corr) {
403
404 if (corr->eph == lastEph) {
405 return;
406 }
407
408 ColumnVector oldXC(4);
409 ColumnVector oldVV(3);
410 corr->eph->position(corr->tRao.gpsw(), corr->tRao.gpssec(),
411 oldXC.data(), oldVV.data());
412
413 ColumnVector newXC(4);
414 ColumnVector newVV(3);
415 lastEph->position(corr->tRao.gpsw(), corr->tRao.gpssec(),
416 newXC.data(), newVV.data());
417
418 ColumnVector dX = newXC.Rows(1,3) - oldXC.Rows(1,3);
419 ColumnVector dV = newVV - oldVV;
420 double dC = newXC(4) - oldXC(4);
421
422 ColumnVector dRAO(3);
423 XYZ_to_RSW(newXC.Rows(1,3), newVV, dX, dRAO);
424
425 ColumnVector dDotRAO(3);
426 XYZ_to_RSW(newXC.Rows(1,3), newVV, dV, dDotRAO);
427
428 QString msg = "switch corr " + corr->prn
429 + QString(" %1 -> %2 %3").arg(corr->iod,3)
430 .arg(lastEph->IOD(),3).arg(dC*t_CST::c, 8, 'f', 4);
431
432 emit newMessage(msg.toAscii(), false);
433
434 corr->iod = lastEph->IOD();
435 corr->eph = lastEph;
436 corr->rao += dRAO;
437 corr->dotRao += dDotRAO;
438 corr->dClk -= dC;
439}
440
441// Process Epoch
442////////////////////////////////////////////////////////////////////////////
443void bncComb::processEpoch() {
444
445 _log.clear();
446
447 QTextStream out(&_log, QIODevice::WriteOnly);
448
449 out << endl << "Combination:" << endl
450 << "------------------------------" << endl;
451
452 // Observation Statistics
453 // ----------------------
454 bool masterPresent = false;
455 QListIterator<cmbAC*> icAC(_ACs);
456 while (icAC.hasNext()) {
457 cmbAC* AC = icAC.next();
458 AC->numObs = 0;
459 QVectorIterator<cmbCorr*> itCorr(corrs());
460 while (itCorr.hasNext()) {
461 cmbCorr* corr = itCorr.next();
462 if (corr->acName == AC->name) {
463 AC->numObs += 1;
464 if (AC->name == _masterOrbitAC) {
465 masterPresent = true;
466 }
467 }
468 }
469 out << AC->name.toAscii().data() << ": " << AC->numObs << endl;
470 }
471
472 // If Master not present, switch to another one
473 // --------------------------------------------
474 const unsigned switchMasterAfterGap = 1;
475 if (masterPresent) {
476 _masterMissingEpochs = 0;
477 }
478 else {
479 ++_masterMissingEpochs;
480 if (_masterMissingEpochs < switchMasterAfterGap) {
481 out << "Missing Master, Epoch skipped" << endl;
482 _buffer.remove(_resTime);
483 emit newMessage(_log, false);
484 return;
485 }
486 else {
487 _masterMissingEpochs = 0;
488 QListIterator<cmbAC*> icAC(_ACs);
489 while (icAC.hasNext()) {
490 cmbAC* AC = icAC.next();
491 if (AC->numObs > 0) {
492 out << "Switching Master AC "
493 << _masterOrbitAC.toAscii().data() << " --> "
494 << AC->name.toAscii().data() << " "
495 << _resTime.datestr().c_str() << " "
496 << _resTime.timestr().c_str() << endl;
497 _masterOrbitAC = AC->name;
498 break;
499 }
500 }
501 }
502 }
503
504 QMap<QString, t_corr*> resCorr;
505
506 // Perform the actual Combination using selected Method
507 // ----------------------------------------------------
508 t_irc irc;
509 ColumnVector dx;
510 if (_method == filter) {
511 irc = processEpoch_filter(out, resCorr, dx);
512 }
513 else {
514 irc = processEpoch_singleEpoch(out, resCorr, dx);
515 }
516
517 // Update Parameter Values, Print Results
518 // --------------------------------------
519 if (irc == success) {
520 for (int iPar = 1; iPar <= _params.size(); iPar++) {
521 cmbParam* pp = _params[iPar-1];
522 pp->xx += dx(iPar);
523 if (pp->type == cmbParam::clkSat) {
524 if (resCorr.find(pp->prn) != resCorr.end()) {
525 resCorr[pp->prn]->dClk = pp->xx / t_CST::c;
526 }
527 }
528 out << _resTime.datestr().c_str() << " "
529 << _resTime.timestr().c_str() << " ";
530 out.setRealNumberNotation(QTextStream::FixedNotation);
531 out.setFieldWidth(8);
532 out.setRealNumberPrecision(4);
533 out << pp->toString() << " "
534 << pp->xx << " +- " << sqrt(_QQ(pp->index,pp->index)) << endl;
535 out.setFieldWidth(0);
536 }
537 printResults(out, resCorr);
538 dumpResults(resCorr);
539 }
540
541 // Delete Data, emit Message
542 // -------------------------
543 _buffer.remove(_resTime);
544 emit newMessage(_log, false);
545}
546
547// Process Epoch - Filter Method
548////////////////////////////////////////////////////////////////////////////
549t_irc bncComb::processEpoch_filter(QTextStream& out,
550 QMap<QString, t_corr*>& resCorr,
551 ColumnVector& dx) {
552
553 // Prediction Step
554 // ---------------
555 int nPar = _params.size();
556 ColumnVector x0(nPar);
557 for (int iPar = 1; iPar <= _params.size(); iPar++) {
558 cmbParam* pp = _params[iPar-1];
559 if (pp->epoSpec) {
560 pp->xx = 0.0;
561 _QQ.Row(iPar) = 0.0;
562 _QQ.Column(iPar) = 0.0;
563 _QQ(iPar,iPar) = pp->sig0 * pp->sig0;
564 }
565 else {
566 _QQ(iPar,iPar) += pp->sigP * pp->sigP;
567 }
568 x0(iPar) = pp->xx;
569 }
570
571 // Check Satellite Positions for Outliers
572 // --------------------------------------
573 if (checkOrbits(out) != success) {
574 return failure;
575 }
576
577 // Update and outlier detection loop
578 // ---------------------------------
579 SymmetricMatrix QQ_sav = _QQ;
580 while (true) {
581
582 Matrix AA;
583 ColumnVector ll;
584 DiagonalMatrix PP;
585
586 if (createAmat(AA, ll, PP, x0, resCorr) != success) {
587 return failure;
588 }
589
590 bncModel::kalman(AA, ll, PP, _QQ, dx);
591 ColumnVector vv = ll - AA * dx;
592
593 int maxResIndex;
594 double maxRes = vv.maximum_absolute_value1(maxResIndex);
595 out.setRealNumberNotation(QTextStream::FixedNotation);
596 out.setRealNumberPrecision(3);
597 out << _resTime.datestr().c_str() << " " << _resTime.timestr().c_str()
598 << " Maximum Residuum " << maxRes << ' '
599 << corrs()[maxResIndex-1]->acName << ' ' << corrs()[maxResIndex-1]->prn;
600
601 if (maxRes > _MAXRES) {
602 for (int iPar = 1; iPar <= _params.size(); iPar++) {
603 cmbParam* pp = _params[iPar-1];
604 if (pp->type == cmbParam::offACSat &&
605 pp->AC == corrs()[maxResIndex-1]->acName &&
606 pp->prn == corrs()[maxResIndex-1]->prn) {
607 QQ_sav.Row(iPar) = 0.0;
608 QQ_sav.Column(iPar) = 0.0;
609 QQ_sav(iPar,iPar) = pp->sig0 * pp->sig0;
610 }
611 }
612
613 out << " Outlier" << endl;
614 _QQ = QQ_sav;
615 corrs().remove(maxResIndex-1);
616 }
617 else {
618 out << " OK" << endl;
619 break;
620 }
621 }
622
623 return success;
624}
625
626// Print results
627////////////////////////////////////////////////////////////////////////////
628void bncComb::printResults(QTextStream& out,
629 const QMap<QString, t_corr*>& resCorr) {
630
631 QMapIterator<QString, t_corr*> it(resCorr);
632 while (it.hasNext()) {
633 it.next();
634 t_corr* corr = it.value();
635 const t_eph* eph = corr->eph;
636 if (eph) {
637 double xx, yy, zz, cc;
638 eph->position(_resTime.gpsw(), _resTime.gpssec(), xx, yy, zz, cc);
639
640 out << _resTime.datestr().c_str() << " "
641 << _resTime.timestr().c_str() << " ";
642 out.setFieldWidth(3);
643 out << "Full Clock " << corr->prn << " " << corr->iod << " ";
644 out.setFieldWidth(14);
645 out << (cc + corr->dClk) * t_CST::c << endl;
646 out.setFieldWidth(0);
647 }
648 else {
649 out << "bncComb::printResuls bug" << endl;
650 }
651 }
652}
653
654// Send results to RTNet Decoder and directly to PPP Client
655////////////////////////////////////////////////////////////////////////////
656void bncComb::dumpResults(const QMap<QString, t_corr*>& resCorr) {
657
658 ostringstream out; out.setf(std::ios::fixed);
659 QStringList corrLines;
660
661 unsigned year, month, day, hour, minute;
662 double sec;
663 _resTime.civil_date(year, month, day);
664 _resTime.civil_time(hour, minute, sec);
665
666 out << "* "
667 << setw(4) << year << " "
668 << setw(2) << month << " "
669 << setw(2) << day << " "
670 << setw(2) << hour << " "
671 << setw(2) << minute << " "
672 << setw(12) << setprecision(8) << sec << " "
673 << endl;
674
675 QMapIterator<QString, t_corr*> it(resCorr);
676 while (it.hasNext()) {
677 it.next();
678 t_corr* corr = it.value();
679
680 ColumnVector xc(4);
681 ColumnVector vv(3);
682 corr->eph->position(_resTime.gpsw(), _resTime.gpssec(),
683 xc.data(), vv.data());
684 bncPPPclient::applyCorr(_resTime, corr, xc, vv);
685
686 // Correction Phase Center --> CoM
687 // -------------------------------
688 ColumnVector dx(3); dx = 0.0;
689 if (_antex) {
690 double Mjd = _resTime.mjd() + _resTime.daysec()/86400.0;
691 if (_antex->satCoMcorrection(corr->prn, Mjd, xc.Rows(1,3), dx) != success) {
692 dx = 0;
693 cout << "antenna not found" << endl;
694 }
695 }
696
697 out << corr->prn.toAscii().data()
698 << " APC 3 "
699 << setw(15) << setprecision(4) << xc(1)
700 << setw(15) << setprecision(4) << xc(2)
701 << setw(15) << setprecision(4) << xc(3)
702 << " Clk 1 "
703 << setw(15) << setprecision(4) << xc(4) * t_CST::c
704 << " Vel 3 "
705 << setw(15) << setprecision(4) << vv(1)
706 << setw(15) << setprecision(4) << vv(2)
707 << setw(15) << setprecision(4) << vv(3)
708 << " CoM 3 "
709 << setw(15) << setprecision(4) << xc(1) - dx(1)
710 << setw(15) << setprecision(4) << xc(2) - dx(2)
711 << setw(15) << setprecision(4) << xc(3) - dx(2)
712 << endl;
713
714 QString line;
715 int messageType = COTYPE_GPSCOMBINED;
716 int updateInt = 0;
717 line.sprintf("%d %d %d %.1f %s"
718 " %3d"
719 " %8.3f %8.3f %8.3f %8.3f"
720 " %10.5f %10.5f %10.5f %10.5f"
721 " %10.5f %10.5f %10.5f %10.5f INTERNAL",
722 messageType, updateInt, _resTime.gpsw(), _resTime.gpssec(),
723 corr->prn.toAscii().data(),
724 corr->iod,
725 corr->dClk * t_CST::c,
726 corr->rao[0],
727 corr->rao[1],
728 corr->rao[2],
729 corr->dotDClk * t_CST::c,
730 corr->dotRao[0],
731 corr->dotRao[1],
732 corr->dotRao[2],
733 corr->dotDotDClk * t_CST::c,
734 corr->dotDotRao[0],
735 corr->dotDotRao[1],
736 corr->dotDotRao[2]);
737 corrLines << line;
738
739 delete corr;
740 }
741 out << "EOE" << endl; // End Of Epoch flag
742
743 if (!_rtnetDecoder) {
744 _rtnetDecoder = new bncRtnetDecoder();
745 }
746
747 vector<string> errmsg;
748 _rtnetDecoder->Decode((char*) out.str().data(), out.str().size(), errmsg);
749
750 // Optionally send new Corrections to PPP
751 // --------------------------------------
752 if (PGM_CORE->_bncPPPclient) {
753 PGM_CORE->_bncPPPclient->slotNewCorrections(corrLines);
754 }
755}
756
757// Create First Design Matrix and Vector of Measurements
758////////////////////////////////////////////////////////////////////////////
759t_irc bncComb::createAmat(Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP,
760 const ColumnVector& x0,
761 QMap<QString, t_corr*>& resCorr) {
762
763 unsigned nPar = _params.size();
764 unsigned nObs = corrs().size();
765
766 if (nObs == 0) {
767 return failure;
768 }
769
770 int MAXPRN = MAXPRN_GPS;
771// if (_useGlonass) {
772// MAXPRN = MAXPRN_GPS + MAXPRN_GLONASS;
773// }
774
775 const int nCon = (_method == filter) ? 1 + MAXPRN : 0;
776
777 AA.ReSize(nObs+nCon, nPar); AA = 0.0;
778 ll.ReSize(nObs+nCon); ll = 0.0;
779 PP.ReSize(nObs+nCon); PP = 1.0 / (sigObs * sigObs);
780
781 int iObs = 0;
782
783 QVectorIterator<cmbCorr*> itCorr(corrs());
784 while (itCorr.hasNext()) {
785 cmbCorr* corr = itCorr.next();
786 QString prn = corr->prn;
787
788 ++iObs;
789
790 if (corr->acName == _masterOrbitAC && resCorr.find(prn) == resCorr.end()) {
791 resCorr[prn] = new t_corr(*corr);
792 }
793
794 for (int iPar = 1; iPar <= _params.size(); iPar++) {
795 cmbParam* pp = _params[iPar-1];
796 AA(iObs, iPar) = pp->partial(corr->acName, prn);
797 }
798
799 ll(iObs) = corr->dClk * t_CST::c - DotProduct(AA.Row(iObs), x0);
800 }
801
802 // Regularization
803 // --------------
804 if (_method == filter) {
805 const double Ph = 1.e6;
806 PP(nObs+1) = Ph;
807 for (int iPar = 1; iPar <= _params.size(); iPar++) {
808 cmbParam* pp = _params[iPar-1];
809 if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
810 pp->type == cmbParam::clkSat ) {
811 AA(nObs+1, iPar) = 1.0;
812 }
813 }
814 int iCond = 1;
815 for (int iGps = 1; iGps <= MAXPRN_GPS; iGps++) {
816 QString prn = QString("G%1").arg(iGps, 2, 10, QChar('0'));
817 ++iCond;
818 PP(nObs+iCond) = Ph;
819 for (int iPar = 1; iPar <= _params.size(); iPar++) {
820 cmbParam* pp = _params[iPar-1];
821 if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
822 pp->type == cmbParam::offACSat &&
823 pp->prn == prn) {
824 AA(nObs+iCond, iPar) = 1.0;
825 }
826 }
827 }
828// if (_useGlonass) {
829// for (int iGlo = 1; iGlo <= MAXPRN_GLONASS; iGlo++) {
830// QString prn = QString("R%1").arg(iGlo, 2, 10, QChar('0'));
831// ++iCond;
832// PP(nObs+iCond) = Ph;
833// for (int iPar = 1; iPar <= _params.size(); iPar++) {
834// cmbParam* pp = _params[iPar-1];
835// if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
836// pp->type == cmbParam::offACSat &&
837// pp->prn == prn) {
838// AA(nObs+iCond, iPar) = 1.0;
839// }
840// }
841// }
842// }
843 }
844
845 return success;
846}
847
848// Process Epoch - Single-Epoch Method
849////////////////////////////////////////////////////////////////////////////
850t_irc bncComb::processEpoch_singleEpoch(QTextStream& out,
851 QMap<QString, t_corr*>& resCorr,
852 ColumnVector& dx) {
853
854 // Check Satellite Positions for Outliers
855 // --------------------------------------
856 if (checkOrbits(out) != success) {
857 return failure;
858 }
859
860 // Outlier Detection Loop
861 // ----------------------
862 while (true) {
863
864 // Remove Satellites that are not in Master
865 // ----------------------------------------
866 QMutableVectorIterator<cmbCorr*> it(corrs());
867 while (it.hasNext()) {
868 cmbCorr* corr = it.next();
869 QString prn = corr->prn;
870 bool foundMaster = false;
871 QVectorIterator<cmbCorr*> itHlp(corrs());
872 while (itHlp.hasNext()) {
873 cmbCorr* corrHlp = itHlp.next();
874 QString prnHlp = corrHlp->prn;
875 QString ACHlp = corrHlp->acName;
876 if (ACHlp == _masterOrbitAC && prn == prnHlp) {
877 foundMaster = true;
878 break;
879 }
880 }
881 if (!foundMaster) {
882 delete corr;
883 it.remove();
884 }
885 }
886
887 // Count Number of Observations per Satellite and per AC
888 // -----------------------------------------------------
889 QMap<QString, int> numObsPrn;
890 QMap<QString, int> numObsAC;
891 QVectorIterator<cmbCorr*> itCorr(corrs());
892 while (itCorr.hasNext()) {
893 cmbCorr* corr = itCorr.next();
894 QString prn = corr->prn;
895 QString AC = corr->acName;
896 if (numObsPrn.find(prn) == numObsPrn.end()) {
897 numObsPrn[prn] = 1;
898 }
899 else {
900 numObsPrn[prn] += 1;
901 }
902 if (numObsAC.find(AC) == numObsAC.end()) {
903 numObsAC[AC] = 1;
904 }
905 else {
906 numObsAC[AC] += 1;
907 }
908 }
909
910 // Clean-Up the Paramters
911 // ----------------------
912 for (int iPar = 1; iPar <= _params.size(); iPar++) {
913 delete _params[iPar-1];
914 }
915 _params.clear();
916
917 // Set new Parameters
918 // ------------------
919 int nextPar = 0;
920
921 QMapIterator<QString, int> itAC(numObsAC);
922 while (itAC.hasNext()) {
923 itAC.next();
924 const QString& AC = itAC.key();
925 int numObs = itAC.value();
926 if (AC != _masterOrbitAC && numObs > 0) {
927 _params.push_back(new cmbParam(cmbParam::offACgps, ++nextPar, AC, ""));
928 if (_useGlonass) {
929 _params.push_back(new cmbParam(cmbParam::offACglo, ++nextPar, AC, ""));
930 }
931 }
932 }
933
934 QMapIterator<QString, int> itPrn(numObsPrn);
935 while (itPrn.hasNext()) {
936 itPrn.next();
937 const QString& prn = itPrn.key();
938 int numObs = itPrn.value();
939 if (numObs > 0) {
940 _params.push_back(new cmbParam(cmbParam::clkSat, ++nextPar, "", prn));
941 }
942 }
943
944 int nPar = _params.size();
945 ColumnVector x0(nPar);
946 x0 = 0.0;
947
948 // Create First-Design Matrix
949 // --------------------------
950 Matrix AA;
951 ColumnVector ll;
952 DiagonalMatrix PP;
953 if (createAmat(AA, ll, PP, x0, resCorr) != success) {
954 return failure;
955 }
956
957 ColumnVector vv;
958 try {
959 Matrix ATP = AA.t() * PP;
960 SymmetricMatrix NN; NN << ATP * AA;
961 ColumnVector bb = ATP * ll;
962 _QQ = NN.i();
963 dx = _QQ * bb;
964 vv = ll - AA * dx;
965 }
966 catch (Exception& exc) {
967 out << exc.what() << endl;
968 return failure;
969 }
970
971 int maxResIndex;
972 double maxRes = vv.maximum_absolute_value1(maxResIndex);
973 out.setRealNumberNotation(QTextStream::FixedNotation);
974 out.setRealNumberPrecision(3);
975 out << _resTime.datestr().c_str() << " " << _resTime.timestr().c_str()
976 << " Maximum Residuum " << maxRes << ' '
977 << corrs()[maxResIndex-1]->acName << ' ' << corrs()[maxResIndex-1]->prn;
978
979 if (maxRes > _MAXRES) {
980 out << " Outlier" << endl;
981 delete corrs()[maxResIndex-1];
982 corrs().remove(maxResIndex-1);
983 }
984 else {
985 out << " OK" << endl;
986 out.setRealNumberNotation(QTextStream::FixedNotation);
987 out.setRealNumberPrecision(3);
988 for (int ii = 0; ii < vv.Nrows(); ii++) {
989 const cmbCorr* corr = corrs()[ii];
990 out << _resTime.datestr().c_str() << ' '
991 << _resTime.timestr().c_str() << " "
992 << corr->acName << ' ' << corr->prn;
993 out.setFieldWidth(6);
994 out << " dClk = " << corr->dClk * t_CST::c << " res = " << vv[ii] << endl;
995 out.setFieldWidth(0);
996 }
997 return success;
998 }
999
1000 }
1001
1002 return failure;
1003}
1004
1005// Check Satellite Positions for Outliers
1006////////////////////////////////////////////////////////////////////////////
1007t_irc bncComb::checkOrbits(QTextStream& out) {
1008
1009 const double MAX_DISPLACEMENT = 0.20;
1010
1011 // Switch to last ephemeris (if possible)
1012 // --------------------------------------
1013 QMutableVectorIterator<cmbCorr*> im(corrs());
1014 while (im.hasNext()) {
1015 cmbCorr* corr = im.next();
1016 QString prn = corr->prn;
1017 if (_eph.find(prn) == _eph.end()) {
1018 out << "checkOrbit: missing eph (not found) " << corr->prn << endl;
1019 delete corr;
1020 im.remove();
1021 }
1022 else if (corr->eph == 0) {
1023 out << "checkOrbit: missing eph (zero) " << corr->prn << endl;
1024 delete corr;
1025 im.remove();
1026 }
1027 else {
1028 if ( corr->eph == _eph[prn]->last || corr->eph == _eph[prn]->prev ) {
1029 switchToLastEph(_eph[prn]->last, corr);
1030 }
1031 else {
1032 out << "checkOrbit: missing eph (deleted) " << corr->prn << endl;
1033 delete corr;
1034 im.remove();
1035 }
1036 }
1037 }
1038
1039 while (true) {
1040
1041 // Compute Mean Corrections for all Satellites
1042 // -------------------------------------------
1043 QMap<QString, int> numCorr;
1044 QMap<QString, ColumnVector> meanRao;
1045 QVectorIterator<cmbCorr*> it(corrs());
1046 while (it.hasNext()) {
1047 cmbCorr* corr = it.next();
1048 QString prn = corr->prn;
1049 if (meanRao.find(prn) == meanRao.end()) {
1050 meanRao[prn].ReSize(4);
1051 meanRao[prn].Rows(1,3) = corr->rao;
1052 meanRao[prn](4) = 1;
1053 }
1054 else {
1055 meanRao[prn].Rows(1,3) += corr->rao;
1056 meanRao[prn](4) += 1;
1057 }
1058 if (numCorr.find(prn) == numCorr.end()) {
1059 numCorr[prn] = 1;
1060 }
1061 else {
1062 numCorr[prn] += 1;
1063 }
1064 }
1065
1066 // Compute Differences wrt Mean, find Maximum
1067 // ------------------------------------------
1068 QMap<QString, cmbCorr*> maxDiff;
1069 it.toFront();
1070 while (it.hasNext()) {
1071 cmbCorr* corr = it.next();
1072 QString prn = corr->prn;
1073 if (meanRao[prn](4) != 0) {
1074 meanRao[prn] /= meanRao[prn](4);
1075 meanRao[prn](4) = 0;
1076 }
1077 corr->diffRao = corr->rao - meanRao[prn].Rows(1,3);
1078 if (maxDiff.find(prn) == maxDiff.end()) {
1079 maxDiff[prn] = corr;
1080 }
1081 else {
1082 double normMax = maxDiff[prn]->diffRao.norm_Frobenius();
1083 double norm = corr->diffRao.norm_Frobenius();
1084 if (norm > normMax) {
1085 maxDiff[prn] = corr;
1086 }
1087 }
1088 }
1089
1090 if (_ACs.size() == 1) {
1091 break;
1092 }
1093
1094 // Remove Outliers
1095 // ---------------
1096 bool removed = false;
1097 QMutableVectorIterator<cmbCorr*> im(corrs());
1098 while (im.hasNext()) {
1099 cmbCorr* corr = im.next();
1100 QString prn = corr->prn;
1101 if (numCorr[prn] < 2) {
1102 delete corr;
1103 im.remove();
1104 }
1105 else if (corr == maxDiff[prn]) {
1106 double norm = corr->diffRao.norm_Frobenius();
1107 if (norm > MAX_DISPLACEMENT) {
1108 out << _resTime.datestr().c_str() << " "
1109 << _resTime.timestr().c_str() << " "
1110 << "Orbit Outlier: "
1111 << corr->acName.toAscii().data() << " "
1112 << prn.toAscii().data() << " "
1113 << corr->iod << " "
1114 << norm << endl;
1115 delete corr;
1116 im.remove();
1117 removed = true;
1118 }
1119 }
1120 }
1121
1122 if (!removed) {
1123 break;
1124 }
1125 }
1126
1127 return success;
1128}
1129
1130//
1131////////////////////////////////////////////////////////////////////////////
1132t_irc bncComb::mergeOrbitCorr(const cmbCorr* orbitCorr, cmbCorr* clkCorr) {
1133
1134 clkCorr->iod = orbitCorr->iod; // is it always correct?
1135 clkCorr->eph = orbitCorr->eph;
1136 clkCorr->tRao = orbitCorr->tRao;
1137 clkCorr->rao = orbitCorr->rao;
1138 clkCorr->dotRao = orbitCorr->dotRao;
1139 clkCorr->dotDotRao = orbitCorr->dotDotRao;
1140
1141 return success;
1142}
Note: See TracBrowser for help on using the repository browser.