source: ntrip/trunk/BNC/src/rinex/reqcanalyze.cpp@ 8559

Last change on this file since 8559 was 8558, checked in by mervart, 6 years ago

Analyze more than two signals

File size: 33.7 KB
RevLine 
[3899]1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: t_reqcAnalyze
30 *
31 * Purpose: Analyze RINEX Files
32 *
33 * Author: L. Mervart
34 *
35 * Created: 11-Apr-2012
36 *
[6255]37 * Changes:
[3899]38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
[4361]42#include <iomanip>
[4579]43#include <qwt_plot_renderer.h>
[4574]44
[3899]45#include "reqcanalyze.h"
[5070]46#include "bnccore.h"
[3899]47#include "bncsettings.h"
[4254]48#include "reqcedit.h"
[4255]49#include "bncutils.h"
[4300]50#include "graphwin.h"
[4577]51#include "availplot.h"
[4662]52#include "eleplot.h"
[4672]53#include "dopplot.h"
[6524]54#include "bncephuser.h"
[3899]55
56using namespace std;
57
58// Constructor
59////////////////////////////////////////////////////////////////////////////
60t_reqcAnalyze::t_reqcAnalyze(QObject* parent) : QThread(parent) {
61
62 bncSettings settings;
[4254]63
[6539]64 _logFileName = settings.value("reqcOutLogFile").toString(); expandEnvVar(_logFileName);
65 _logFile = 0;
66 _log = 0;
67 _currEpo = 0;
68 _obsFileNames = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts);
69 _navFileNames = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts);
70 _reqcPlotSignals = settings.value("reqcSkyPlotSignals").toString();
[8148]71 _defaultSignalTypes << "G:1&2" << "R:1&2" << "J:1&2" << "E:1&5" << "S:1&5" << "C:2&7" << "I:5&9";
[6563]72 if (_reqcPlotSignals.isEmpty()) {
73 _reqcPlotSignals = _defaultSignalTypes.join(" ");
74 }
[8555]75 analyzePlotSignals();
[6275]76
[8557]77 qRegisterMetaType< QVector<t_skyPlotData> >("QVector<t_skyPlotData>");
78
79 connect(this, SIGNAL(dspSkyPlot(const QString&, QVector<t_skyPlotData>,
[7546]80 const QByteArray&, double)),
[8557]81 this, SLOT(slotDspSkyPlot(const QString&, QVector<t_skyPlotData>,
[6275]82 const QByteArray&, double)));
83
84 connect(this, SIGNAL(dspAvailPlot(const QString&, const QByteArray&)),
85 this, SLOT(slotDspAvailPlot(const QString&, const QByteArray&)));
[3899]86}
87
88// Destructor
89////////////////////////////////////////////////////////////////////////////
90t_reqcAnalyze::~t_reqcAnalyze() {
[4255]91 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
92 delete _rnxObsFiles[ii];
93 }
94 for (int ii = 0; ii < _ephs.size(); ii++) {
95 delete _ephs[ii];
96 }
97 delete _log; _log = 0;
98 delete _logFile; _logFile = 0;
[5072]99 if (BNC_CORE->mode() != t_bncCore::interactive) {
[5066]100 qApp->exit(0);
[7942]101 msleep(100); //sleep 0.1 sec
[4452]102 }
[3899]103}
104
[6255]105//
[3899]106////////////////////////////////////////////////////////////////////////////
107void t_reqcAnalyze::run() {
108
[7911]109 static const double QC_FORMAT_VERSION = 1.1;
[6529]110
[4255]111 // Open Log File
112 // -------------
[6867]113 if (!_logFileName.isEmpty()) {
114 _logFile = new QFile(_logFileName);
115 if (_logFile->open(QIODevice::WriteOnly | QIODevice::Text)) {
116 _log = new QTextStream();
117 _log->setDevice(_logFile);
118 }
[4517]119 }
[4255]120
[6867]121 if (_log) {
[7548]122 *_log << "QC Format Version : " << QString("%1").arg(QC_FORMAT_VERSION,3,'f',1) << endl << endl;
[6867]123 }
124
[6523]125 // Check Ephemerides
126 // -----------------
127 checkEphemerides();
128
[4255]129 // Initialize RINEX Observation Files
130 // ----------------------------------
[4525]131 t_reqcEdit::initRnxObsFiles(_obsFileNames, _rnxObsFiles, _log);
[3899]132
[4257]133 // Read Ephemerides
134 // ----------------
135 t_reqcEdit::readEphemerides(_navFileNames, _ephs);
136
[4255]137 // Loop over all RINEX Files
138 // -------------------------
[4254]139 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
140 analyzeFile(_rnxObsFiles[ii]);
141 }
142
[4255]143 // Exit
144 // ----
[4452]145 emit finished();
146 deleteLater();
[3899]147}
[4254]148
[6255]149//
[4254]150////////////////////////////////////////////////////////////////////////////
[8555]151void t_reqcAnalyze::analyzePlotSignals() {
[6539]152
153 QStringList signalsOpt = _reqcPlotSignals.split(" ", QString::SkipEmptyParts);
154
155 for (int ii = 0; ii < signalsOpt.size(); ii++) {
[6563]156 QStringList input = signalsOpt.at(ii).split(QRegExp("[:&]"), QString::SkipEmptyParts);
157 if (input.size() > 1 && input[0].length() == 1) {
[8555]158 char system = input[0].toLatin1().constData()[0];
159 QStringList sysValid = _defaultSignalTypes.filter(QString(system));
160 if (!sysValid.isEmpty()) {
161 for (int iSig = 1; iSig < input.size(); iSig++) {
162 if (input[iSig].length() == 1 && input[iSig][0].isDigit()) {
163 _signalTypes[system].append(input[iSig][0].toLatin1());
164 }
[6563]165 }
166 }
[6539]167 }
168 }
169}
170
171//
172////////////////////////////////////////////////////////////////////////////
[4260]173void t_reqcAnalyze::analyzeFile(t_rnxObsFile* obsFile) {
[4259]174
[6271]175 _qcFile.clear();
[4343]176
[4342]177 // A priori Coordinates
178 // --------------------
[4679]179 ColumnVector xyzSta = obsFile->xyz();
[4342]180
[4262]181 // Loop over all Epochs
182 // --------------------
[4541]183 try {
[7546]184 QMap<QString, bncTime> lastObsTime;
[6271]185 bool firstEpo = true;
[4541]186 while ( (_currEpo = obsFile->nextEpoch()) != 0) {
[6271]187 if (firstEpo) {
188 firstEpo = false;
189 _qcFile._startTime = _currEpo->tt;
190 _qcFile._antennaName = obsFile->antennaName();
191 _qcFile._markerName = obsFile->markerName();
192 _qcFile._receiverType = obsFile->receiverType();
193 _qcFile._interval = obsFile->interval();
[4688]194 }
[6271]195 _qcFile._endTime = _currEpo->tt;
[6255]196
[6271]197 t_qcEpo qcEpo;
198 qcEpo._epoTime = _currEpo->tt;
199 qcEpo._PDOP = cmpDOP(xyzSta);
200
[4541]201 // Loop over all satellites
202 // ------------------------
203 for (unsigned iObs = 0; iObs < _currEpo->rnxSat.size(); iObs++) {
204 const t_rnxObsFile::t_rnxSat& rnxSat = _currEpo->rnxSat[iObs];
[7917]205 if (_navFileNames.size() &&
206 _numExpObs.find(rnxSat.prn) == _numExpObs.end()) {
207 _numExpObs[rnxSat.prn] = 0;
208 }
[6539]209 if (_signalTypes.find(rnxSat.prn.system()) == _signalTypes.end()) {
210 continue;
211 }
[6271]212 t_satObs satObs;
213 t_rnxObsFile::setObsFromRnx(obsFile, _currEpo, rnxSat, satObs);
[6288]214 t_qcSat& qcSat = qcEpo._qcSat[satObs._prn];
[6296]215 setQcObs(qcEpo._epoTime, xyzSta, satObs, lastObsTime, qcSat);
[6288]216 updateQcSat(qcSat, _qcFile._qcSatSum[satObs._prn]);
[4262]217 }
[6271]218 _qcFile._qcEpo.push_back(qcEpo);
219 }
[6255]220
[6281]221 analyzeMultipath();
222
[7917]223 if (_navFileNames.size()) {
224 setExpectedObs(_qcFile._startTime, _qcFile._endTime, _qcFile._interval, xyzSta);
225 }
226
[6271]227 preparePlotData(obsFile);
[4678]228
[6284]229 printReport(obsFile);
[4541]230 }
231 catch (QString str) {
232 if (_log) {
233 *_log << "Exception " << str << endl;
[4262]234 }
[4541]235 else {
[6255]236 qDebug() << str;
[4541]237 }
238 }
[6271]239}
[4262]240
[6271]241// Compute Dilution of Precision
242////////////////////////////////////////////////////////////////////////////
243double t_reqcAnalyze::cmpDOP(const ColumnVector& xyzSta) const {
[4268]244
[6398]245 if ( xyzSta.size() != 3 || (xyzSta[0] == 0.0 && xyzSta[1] == 0.0 && xyzSta[2] == 0.0) ) {
[6271]246 return 0.0;
[4268]247 }
248
[6271]249 unsigned nSat = _currEpo->rnxSat.size();
[4706]250
[6271]251 if (nSat < 4) {
252 return 0.0;
[4718]253 }
[6271]254
255 Matrix AA(nSat, 4);
256
257 unsigned nSatUsed = 0;
258 for (unsigned iSat = 0; iSat < nSat; iSat++) {
259
260 const t_rnxObsFile::t_rnxSat& rnxSat = _currEpo->rnxSat[iSat];
261 const t_prn& prn = rnxSat.prn;
262
[6539]263 if (_signalTypes.find(prn.system()) == _signalTypes.end()) {
264 continue;
265 }
266
[6271]267 t_eph* eph = 0;
268 for (int ie = 0; ie < _ephs.size(); ie++) {
269 if (_ephs[ie]->prn() == prn) {
270 eph = _ephs[ie];
271 break;
272 }
[4718]273 }
[6271]274 if (eph) {
[8542]275 ColumnVector xSat(6);
[6271]276 ColumnVector vv(3);
277 if (eph->getCrd(_currEpo->tt, xSat, vv, false) == success) {
278 ++nSatUsed;
279 ColumnVector dx = xSat.Rows(1,3) - xyzSta;
280 double rho = dx.norm_Frobenius();
281 AA(nSatUsed,1) = dx(1) / rho;
282 AA(nSatUsed,2) = dx(2) / rho;
283 AA(nSatUsed,3) = dx(3) / rho;
284 AA(nSatUsed,4) = 1.0;
285 }
[4718]286 }
287 }
[6271]288
289 if (nSatUsed < 4) {
290 return 0.0;
291 }
292
293 AA = AA.Rows(1, nSatUsed);
294
295 SymmetricMatrix QQ;
296 QQ << AA.t() * AA;
297 QQ = QQ.i();
298
299 return sqrt(QQ.trace());
[4254]300}
[4263]301
[6255]302//
[4263]303////////////////////////////////////////////////////////////////////////////
[6288]304void t_reqcAnalyze::updateQcSat(const t_qcSat& qcSat, t_qcSatSum& qcSatSum) {
[6285]305
[6288]306 for (int ii = 0; ii < qcSat._qcFrq.size(); ii++) {
307 const t_qcFrq& qcFrq = qcSat._qcFrq[ii];
[6285]308 t_qcFrqSum& qcFrqSum = qcSatSum._qcFrqSum[qcFrq._rnxType2ch];
309 qcFrqSum._numObs += 1;
310 if (qcFrq._slip) {
311 qcFrqSum._numSlipsFlagged += 1;
312 }
313 if (qcFrq._gap) {
314 qcFrqSum._numGaps += 1;
315 }
[6312]316 if (qcFrq._SNR > 0.0) {
317 qcFrqSum._numSNR += 1;
318 qcFrqSum._sumSNR += qcFrq._SNR;
319 }
[6271]320 }
321}
[4265]322
[6271]323//
324////////////////////////////////////////////////////////////////////////////
[7546]325void t_reqcAnalyze::setQcObs(const bncTime& epoTime, const ColumnVector& xyzSta,
[6296]326 const t_satObs& satObs, QMap<QString, bncTime>& lastObsTime,
327 t_qcSat& qcSat) {
[4338]328
[6281]329 t_eph* eph = 0;
330 for (int ie = 0; ie < _ephs.size(); ie++) {
[7714]331 if (_ephs[ie]->prn().system() == satObs._prn.system() &&
332 _ephs[ie]->prn().number() == satObs._prn.number()) {
[6281]333 eph = _ephs[ie];
334 break;
[6271]335 }
[6281]336 }
337 if (eph) {
[8542]338 ColumnVector xc(6);
[6281]339 ColumnVector vv(3);
[6398]340 if ( xyzSta.size() == 3 && (xyzSta[0] != 0.0 || xyzSta[1] != 0.0 || xyzSta[2] != 0.0) &&
341 eph->getCrd(epoTime, xc, vv, false) == success) {
[6281]342 double rho, eleSat, azSat;
343 topos(xyzSta(1), xyzSta(2), xyzSta(3), xc(1), xc(2), xc(3), rho, eleSat, azSat);
[6288]344 qcSat._eleSet = true;
345 qcSat._azDeg = azSat * 180.0/M_PI;
346 qcSat._eleDeg = eleSat * 180.0/M_PI;
[6281]347 }
348 if (satObs._prn.system() == 'R') {
[6288]349 qcSat._slotSet = true;
350 qcSat._slotNum = eph->slotNum();
[6271]351 }
352 }
353
[4608]354 // Availability and Slip Flags
355 // ---------------------------
[6285]356 for (unsigned ii = 0; ii < satObs._obs.size(); ii++) {
357 const t_frqObs* frqObs = satObs._obs[ii];
358
[6288]359 qcSat._qcFrq.push_back(t_qcFrq());
360 t_qcFrq& qcFrq = qcSat._qcFrq.back();
[6285]361
362 qcFrq._rnxType2ch = QString(frqObs->_rnxType2ch.c_str());
363 qcFrq._SNR = frqObs->_snr;
364 qcFrq._slip = frqObs->_slip;
[6293]365 qcFrq._phaseValid = frqObs->_phaseValid;
366 qcFrq._codeValid = frqObs->_codeValid;
[6285]367 // Check Gaps
368 // ----------
[6296]369 QString key = QString(satObs._prn.toString().c_str()) + qcFrq._rnxType2ch;
370 if (lastObsTime[key].valid()) {
371 double dt = epoTime - lastObsTime[key];
[6285]372 if (dt > 1.5 * _qcFile._interval) {
373 qcFrq._gap = true;
[6137]374 }
375 }
[6296]376 lastObsTime[key] = epoTime;
[6285]377
378 // Compute the Multipath Linear Combination
379 // ----------------------------------------
[6292]380 if (frqObs->_codeValid) {
[6551]381 t_frequency::type fA = t_frequency::dummy;
382 t_frequency::type fB = t_frequency::dummy;
[6560]383 char sys = satObs._prn.system();
[8555]384 for (int iSig = 1; iSig < _signalTypes[sys].size(); iSig++) {
385 std::string frqType1, frqType2;
386 if (_signalTypes.find(sys) != _signalTypes.end()) {
387 frqType1.push_back(sys);
388 frqType1.push_back(_signalTypes[sys][0]);
389 frqType2.push_back(sys);
390 frqType2.push_back(_signalTypes[sys][iSig]);
391 if (frqObs->_rnxType2ch[0] == frqType1[1]) {
392 fA = t_frequency::toInt(frqType1);
393 fB = t_frequency::toInt(frqType2);
394 }
395 else if (frqObs->_rnxType2ch[0] == frqType2[1]) {
396 fA = t_frequency::toInt(frqType2);
397 fB = t_frequency::toInt(frqType1);
398 }
[6285]399 }
[8555]400 if (fA != t_frequency::dummy && fB != t_frequency::dummy) {
401 double f_a = t_CST::freq(fA, qcSat._slotNum);
402 double f_b = t_CST::freq(fB, qcSat._slotNum);
403 double C_a = frqObs->_code;
404
405 bool foundA = false;
406 double L_a = 0.0;
407 bool foundB = false;
408 double L_b = 0.0;
409 for (unsigned jj = 0; jj < satObs._obs.size(); jj++) {
410 const t_frqObs* frqObsHlp = satObs._obs[jj];
411 if (frqObsHlp->_rnxType2ch[0] == t_frequency::toString(fA)[1] &&
412 frqObsHlp->_phaseValid) {
413 foundA = true;
414 L_a = frqObsHlp->_phase * t_CST::c / f_a;
415 }
416 else if (frqObsHlp->_rnxType2ch[0] == t_frequency::toString(fB)[1] &&
417 frqObsHlp->_phaseValid) {
418 foundB = true;
419 L_b = frqObsHlp->_phase * t_CST::c / f_b;
420 }
[6285]421 }
[8555]422 if (foundA && foundB) {
423 qcFrq._setMP = true;
424 qcFrq._rawMP = C_a - L_a - 2.0*f_b*f_b/(f_a*f_a-f_b*f_b) * (L_a - L_b);
[6292]425 }
[6285]426 }
427 }
428 }
[6291]429 } // satObs loop
[4263]430}
[4350]431
[6255]432//
[4350]433////////////////////////////////////////////////////////////////////////////
[6281]434void t_reqcAnalyze::analyzeMultipath() {
[4675]435
[6271]436 const double SLIPTRESH = 10.0; // cycle-slip threshold (meters)
437 const double chunkStep = 600.0; // 10 minutes
[4584]438
[6271]439 // Loop over all satellites available
440 // ----------------------------------
[6285]441 QMutableMapIterator<t_prn, t_qcSatSum> itSat(_qcFile._qcSatSum);
442 while (itSat.hasNext()) {
443 itSat.next();
444 const t_prn& prn = itSat.key();
445 t_qcSatSum& qcSatSum = itSat.value();
[4351]446
[6285]447 // Loop over all frequencies available
448 // -----------------------------------
449 QMutableMapIterator<QString, t_qcFrqSum> itFrq(qcSatSum._qcFrqSum);
450 while (itFrq.hasNext()) {
451 itFrq.next();
452 const QString& frqType = itFrq.key();
453 t_qcFrqSum& qcFrqSum = itFrq.value();
[4702]454
[6285]455 // Loop over all Chunks of Data
456 // ----------------------------
[7546]457 for (bncTime chunkStart = _qcFile._startTime;
[6285]458 chunkStart < _qcFile._endTime; chunkStart += chunkStep) {
459
460 bncTime chunkEnd = chunkStart + chunkStep;
461
462 QVector<t_qcFrq*> frqVec;
463 QVector<double> MP;
[7546]464
[6285]465 // Loop over all Epochs within one Chunk of Data
466 // ---------------------------------------------
467 for (int iEpo = 0; iEpo < _qcFile._qcEpo.size(); iEpo++) {
468 t_qcEpo& qcEpo = _qcFile._qcEpo[iEpo];
469 if (chunkStart <= qcEpo._epoTime && qcEpo._epoTime < chunkEnd) {
[6288]470 if (qcEpo._qcSat.contains(prn)) {
471 t_qcSat& qcSat = qcEpo._qcSat[prn];
472 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
473 t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
[6285]474 if (qcFrq._rnxType2ch == frqType) {
475 frqVec << &qcFrq;
476 if (qcFrq._setMP) {
477 MP << qcFrq._rawMP;
478 }
479 }
480 }
[6213]481 }
[4590]482 }
483 }
[4563]484
[6285]485 // Compute the multipath mean and standard deviation
486 // -------------------------------------------------
487 if (MP.size() > 1) {
488 double meanMP = 0.0;
489 for (int ii = 0; ii < MP.size(); ii++) {
490 meanMP += MP[ii];
[6271]491 }
[6285]492 meanMP /= MP.size();
[7546]493
[6285]494 bool slipMP = false;
[7546]495
[6285]496 double stdMP = 0.0;
497 for (int ii = 0; ii < MP.size(); ii++) {
498 double diff = MP[ii] - meanMP;
499 if (fabs(diff) > SLIPTRESH) {
500 slipMP = true;
501 break;
502 }
503 stdMP += diff * diff;
504 }
[7546]505
[6281]506 if (slipMP) {
[6285]507 stdMP = 0.0;
508 stdMP = 0.0;
509 qcFrqSum._numSlipsFound += 1;
[6281]510 }
511 else {
[6285]512 stdMP = sqrt(stdMP / (MP.size()-1));
[6312]513 qcFrqSum._numMP += 1;
514 qcFrqSum._sumMP += stdMP;
[6281]515 }
[7546]516
[6285]517 for (int ii = 0; ii < frqVec.size(); ii++) {
518 t_qcFrq* qcFrq = frqVec[ii];
519 if (slipMP) {
520 qcFrq->_slip = true;
521 }
522 else {
523 qcFrq->_stdMP = stdMP;
524 }
525 }
[6281]526 }
[6285]527 } // chunk loop
528 } // frq loop
529 } // sat loop
[6281]530}
531
532//
533////////////////////////////////////////////////////////////////////////////
534void t_reqcAnalyze::preparePlotData(const t_rnxObsFile* obsFile) {
535
[8557]536 QVector<t_skyPlotData> skyPlotDataMP;
537 QVector<t_skyPlotData> skyPlotDataSN;
[6422]538
[8557]539 for(QMap<char, QVector<char> >::iterator it1 = _signalTypes.begin();
540 it1 != _signalTypes.end(); it1++) {
[6436]541
[8557]542 for (int ii = 0; ii < it1.value().size(); ii++) {
[6318]543
[8557]544 skyPlotDataMP.append(t_skyPlotData()); t_skyPlotData& dataMP = skyPlotDataMP.last();
545 skyPlotDataSN.append(t_skyPlotData()); t_skyPlotData& dataSN = skyPlotDataSN.last();
[6281]546
[8557]547 dataMP._title = "Multipath\n" + QString(it1.key()) + ":" + it1.value()[ii] + " ";
548 dataSN._title = "Signal-to-Noise Ratio\n" + QString(it1.key()) + ":" + it1.value()[ii] + " ";
[6424]549
[8557]550 // Loop over all observations
551 // --------------------------
552 for (int iEpo = 0; iEpo < _qcFile._qcEpo.size(); iEpo++) {
553 t_qcEpo& qcEpo = _qcFile._qcEpo[iEpo];
554 QMapIterator<t_prn, t_qcSat> it2(qcEpo._qcSat);
555 while (it2.hasNext()) {
556 it2.next();
557 const t_qcSat& qcSat = it2.value();
558 if (qcSat._eleSet) {
559 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
560 const t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
561 if (QString(it1.value()[ii]) == qcFrq._rnxType2ch.left(1)) {
[8558]562 (*dataMP._data) << (new t_polarPoint(qcSat._azDeg, 90.0 - qcSat._eleDeg, qcFrq._stdMP));
563 (*dataSN._data) << (new t_polarPoint(qcSat._azDeg, 90.0 - qcSat._eleDeg, qcFrq._SNR));
[6424]564 }
[6286]565 }
566 }
[6284]567 }
[4700]568 }
[4353]569 }
[6271]570 }
[4353]571
[6271]572 // Show the plots
573 // --------------
574 if (BNC_CORE->GUIenabled()) {
575 QFileInfo fileInfo(obsFile->fileName());
[8204]576 QByteArray title = fileInfo.fileName().toLatin1();
[8557]577 emit dspSkyPlot(obsFile->fileName(), skyPlotDataMP, "Meters", 2.0);
578 emit dspSkyPlot(obsFile->fileName(), skyPlotDataSN, "dbHz", 54.0);
[6275]579 emit dspAvailPlot(obsFile->fileName(), title);
[6271]580 }
[4350]581}
[4572]582
[6255]583//
[4572]584////////////////////////////////////////////////////////////////////////////
[8557]585void t_reqcAnalyze::slotDspSkyPlot(const QString& fileName,
586 QVector<t_skyPlotData> skyPlotData,
587 const QByteArray& scaleTitle, double maxValue) {
[4572]588
[5068]589 if (BNC_CORE->GUIenabled()) {
[4573]590
[6271]591 if (maxValue == 0.0) {
[8557]592 QVectorIterator<t_skyPlotData> it(skyPlotData);
593 while (it.hasNext()) {
594 const t_skyPlotData& plotData = it.next();
[8558]595 const QVector<t_polarPoint*>* data = plotData._data;
596 for (int ii = 0; ii < data->size(); ii++) {
597 double val = data->at(ii)->_value;
[6271]598 if (maxValue < val) {
599 maxValue = val;
600 }
601 }
602 }
603 }
[4659]604
[6271]605 QwtInterval scaleInterval(0.0, maxValue);
[4671]606
[4573]607 QVector<QWidget*> plots;
[8557]608 QMutableVectorIterator<t_skyPlotData> it(skyPlotData);
609 while (it.hasNext()) {
610 t_skyPlotData& plotData = it.next();
[8558]611 QVector<t_polarPoint*>* data = plotData._data;
[8557]612 QwtText title(plotData._title);
[6423]613 QFont font = title.font(); font.setPointSize(font.pointSize()-1); title.setFont(font);
[8557]614 t_polarPlot* plot = new t_polarPlot(title, scaleInterval, BNC_CORE->mainWindow());
[8558]615 plot->addCurve(data);
[8557]616 plots << plot;
[6271]617 }
[4666]618
[6271]619 t_graphWin* graphWin = new t_graphWin(0, fileName, plots,
[8556]620 &scaleTitle, &scaleInterval, false);
[4666]621
[4573]622 graphWin->show();
623
624 bncSettings settings;
625 QString dirName = settings.value("reqcPlotDir").toString();
626 if (!dirName.isEmpty()) {
[6271]627 QByteArray ext = (scaleTitle == "Meters") ? "_M.png" : "_S.png";
[4579]628 graphWin->savePNG(dirName, ext);
[4573]629 }
630 }
[4572]631}
[4679]632
[6271]633//
[4679]634////////////////////////////////////////////////////////////////////////////
[6275]635void t_reqcAnalyze::slotDspAvailPlot(const QString& fileName, const QByteArray& title) {
[4679]636
[6280]637 t_plotData plotData;
[6278]638 QMap<t_prn, t_plotData> plotDataMap;
[6272]639
[6278]640 for (int ii = 0; ii < _qcFile._qcEpo.size(); ii++) {
641 const t_qcEpo& qcEpo = _qcFile._qcEpo[ii];
[6280]642 double mjdX24 = qcEpo._epoTime.mjddec() * 24.0;
643
644 plotData._mjdX24 << mjdX24;
645 plotData._PDOP << qcEpo._PDOP;
[6288]646 plotData._numSat << qcEpo._qcSat.size();
[6280]647
[6288]648 QMapIterator<t_prn, t_qcSat> it(qcEpo._qcSat);
[6278]649 while (it.hasNext()) {
650 it.next();
651 const t_prn& prn = it.key();
[6288]652 const t_qcSat& qcSat = it.value();
[6539]653
[6280]654 t_plotData& data = plotDataMap[prn];
[6286]655
[6297]656 if (qcSat._eleSet) {
657 data._mjdX24 << mjdX24;
658 data._eleDeg << qcSat._eleDeg;
659 }
[6286]660
[8555]661 for (int iSig = 0; iSig < _signalTypes[prn.system()].size(); iSig++) {
662 char frqChar = _signalTypes[prn.system()][iSig];
663 QString frqType;
664 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
665 const t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
666 if (qcFrq._rnxType2ch[0] == frqChar && frqType.isEmpty()) {
667 frqType = qcFrq._rnxType2ch;
[6286]668 }
[8555]669 if (qcFrq._rnxType2ch == frqType) {
670 t_plotData::t_hlpStatus& status = data._status[frqChar];
671 if (qcFrq._slip) {
672 status._slip << mjdX24;
673 }
674 else if (qcFrq._gap) {
675 status._gap << mjdX24;
676 }
677 else {
678 status._ok << mjdX24;
679 }
[6286]680 }
[6284]681 }
682 }
[6278]683 }
684 }
685
[6271]686 if (BNC_CORE->GUIenabled()) {
[6278]687 t_availPlot* plotA = new t_availPlot(0, plotDataMap);
[6271]688 plotA->setTitle(title);
[4679]689
[6278]690 t_elePlot* plotZ = new t_elePlot(0, plotDataMap);
[4679]691
[6279]692 t_dopPlot* plotD = new t_dopPlot(0, plotData);
[4679]693
[6271]694 QVector<QWidget*> plots;
695 plots << plotA << plotZ << plotD;
[8556]696 t_graphWin* graphWin = new t_graphWin(0, fileName, plots, 0, 0, true);
[4679]697
[6271]698 int ww = QFontMetrics(graphWin->font()).width('w');
699 graphWin->setMinimumSize(120*ww, 40*ww);
[4679]700
[6271]701 graphWin->show();
[4679]702
[6271]703 bncSettings settings;
704 QString dirName = settings.value("reqcPlotDir").toString();
705 if (!dirName.isEmpty()) {
706 QByteArray ext = "_A.png";
707 graphWin->savePNG(dirName, ext);
[4679]708 }
[4681]709 }
[4679]710}
[4689]711
712// Finish the report
713////////////////////////////////////////////////////////////////////////////
[6284]714void t_reqcAnalyze::printReport(const t_rnxObsFile* obsFile) {
[5368]715
[4689]716 if (!_log) {
717 return;
718 }
719
[6317]720 QFileInfo obsFi(obsFile->fileName());
721 QString obsFileName = obsFi.fileName();
722
[6300]723 // Summary
724 // -------
[7546]725 *_log << "Observation File : " << obsFileName << endl
726 << "RINEX Version : " << QString("%1").arg(obsFile->version(),4,'f',2) << endl
727 << "Marker Name : " << _qcFile._markerName << endl
728 << "Marker Number : " << obsFile->markerNumber() << endl
729 << "Receiver : " << _qcFile._receiverType << endl
730 << "Antenna : " << _qcFile._antennaName << endl
731 << "Position XYZ : " << QString("%1 %2 %3").arg(obsFile->xyz()(1), 14, 'f', 4)
[6303]732 .arg(obsFile->xyz()(2), 14, 'f', 4)
733 .arg(obsFile->xyz()(3), 14, 'f', 4) << endl
[7546]734 << "Antenna dH/dE/dN : " << QString("%1 %2 %3").arg(obsFile->antNEU()(3), 8, 'f', 4)
[6303]735 .arg(obsFile->antNEU()(2), 8, 'f', 4)
736 .arg(obsFile->antNEU()(1), 8, 'f', 4) << endl
[7546]737 << "Start Time : " << _qcFile._startTime.datestr().c_str() << ' '
[7907]738 << _qcFile._startTime.timestr(1,'.').c_str() << endl
[7546]739 << "End Time : " << _qcFile._endTime.datestr().c_str() << ' '
[7907]740 << _qcFile._endTime.timestr(1,'.').c_str() << endl
[8397]741 << "Interval : " << _qcFile._interval << " sec" << endl;
[4689]742
[6303]743 // Number of systems
744 // -----------------
[7546]745 QMap<QChar, QVector<const t_qcSatSum*> > systemMap;
[6286]746 QMapIterator<t_prn, t_qcSatSum> itSat(_qcFile._qcSatSum);
747 while (itSat.hasNext()) {
748 itSat.next();
[6303]749 const t_prn& prn = itSat.key();
[6286]750 const t_qcSatSum& qcSatSum = itSat.value();
[6303]751 systemMap[prn.system()].push_back(&qcSatSum);
752 }
[7546]753 *_log << "Navigation Systems : " << systemMap.size() << " ";
[6286]754
[6303]755 QMapIterator<QChar, QVector<const t_qcSatSum*> > itSys(systemMap);
756 while (itSys.hasNext()) {
757 itSys.next();
758 *_log << ' ' << itSys.key();
[4693]759 }
[6303]760 *_log << endl;
[4693]761
[7546]762 // Observation types per system
763 // -----------------------------
764 for (int iSys = 0; iSys < obsFile->numSys(); iSys++) {
765 char sys = obsFile->system(iSys);
766 if (sys != ' ') {
767 *_log << "Observation Types " << sys << ":";
768 for (int iType = 0; iType < obsFile->nTypes(sys); iType++) {
769 QString type = obsFile->obsType(sys, iType);
770 *_log << " " << type;
771 }
772 *_log << endl;
773 }
774 }
775
[7917]776 // System specific summary
777 // -----------------------
[6304]778 itSys.toFront();
779 while (itSys.hasNext()) {
780 itSys.next();
781 const QChar& sys = itSys.key();
782 const QVector<const t_qcSatSum*>& qcSatVec = itSys.value();
[7917]783 int numExpectedObs = 0;
784 for(QMap<t_prn, int>::iterator it = _numExpObs.begin();
785 it != _numExpObs.end(); it++) {
786 if (sys == it.key().system()) {
787 numExpectedObs += it.value();
788 }
789 }
[6304]790 QString prefixSys = QString(" ") + sys + QString(": ");
[7546]791 QMap<QString, QVector<const t_qcFrqSum*> > frqMap;
[6305]792 for (int ii = 0; ii < qcSatVec.size(); ii++) {
793 const t_qcSatSum* qcSatSum = qcSatVec[ii];
794 QMapIterator<QString, t_qcFrqSum> itFrq(qcSatSum->_qcFrqSum);
795 while (itFrq.hasNext()) {
796 itFrq.next();
[6315]797 QString frqType = itFrq.key(); if (frqType.length() < 2) frqType += '?';
[6305]798 const t_qcFrqSum& qcFrqSum = itFrq.value();
[6306]799 frqMap[frqType].push_back(&qcFrqSum);
[6305]800 }
801 }
[6309]802 *_log << endl
[6310]803 << prefixSys << "Satellites: " << qcSatVec.size() << endl
804 << prefixSys << "Signals : " << frqMap.size() << " ";
[6867]805 QMapIterator<QString, QVector<const t_qcFrqSum*> > itFrq(frqMap);
[6307]806 while (itFrq.hasNext()) {
807 itFrq.next();
[6315]808 QString frqType = itFrq.key(); if (frqType.length() < 2) frqType += '?';
[6308]809 *_log << ' ' << frqType;
810 }
811 *_log << endl;
[6316]812 QString prefixSys2 = " " + prefixSys;
[6308]813 itFrq.toFront();
814 while (itFrq.hasNext()) {
815 itFrq.next();
[6315]816 QString frqType = itFrq.key(); if (frqType.length() < 2) frqType += '?';
[6307]817 const QVector<const t_qcFrqSum*> qcFrqVec = itFrq.value();
818 QString prefixFrq = QString(" ") + frqType + QString(": ");
[6313]819 int numObs = 0;
820 int numSlipsFlagged = 0;
821 int numSlipsFound = 0;
822 int numGaps = 0;
823 int numSNR = 0;
824 int numMP = 0;
825 double sumSNR = 0.0;
826 double sumMP = 0.0;
[6308]827 for (int ii = 0; ii < qcFrqVec.size(); ii++) {
828 const t_qcFrqSum* qcFrqSum = qcFrqVec[ii];
829 numObs += qcFrqSum->_numObs ;
830 numSlipsFlagged += qcFrqSum->_numSlipsFlagged;
831 numSlipsFound += qcFrqSum->_numSlipsFound ;
832 numGaps += qcFrqSum->_numGaps ;
[6313]833 numSNR += qcFrqSum->_numSNR;
834 numMP += qcFrqSum->_numMP;
[6314]835 sumSNR += qcFrqSum->_sumSNR;
836 sumMP += qcFrqSum->_sumMP;
[6308]837 }
[6313]838 if (numSNR > 0) {
839 sumSNR /= numSNR;
840 }
841 if (numMP > 0) {
842 sumMP /= numMP;
843 }
[7917]844
845 double ratio = (double(numObs) / double(numExpectedObs)) * 100.0;
846
[6309]847 *_log << endl
[7917]848 << prefixSys2 << prefixFrq << "Observations : ";
849 if(_navFileNames.isEmpty() || _navFileIncomplete.contains(sys.toLatin1())) {
850 *_log << QString("%1\n").arg(numObs, 6);
851 }
852 else {
853 *_log << QString("%1 (%2) %3 \%\n").arg(numObs, 6).arg(numExpectedObs, 8).arg(ratio, 8, 'f', 2);
854 }
855 *_log << prefixSys2 << prefixFrq << "Slips (file+found): " << QString("%1 +").arg(numSlipsFlagged, 8)
[7907]856 << QString("%1\n").arg(numSlipsFound, 8)
857 << prefixSys2 << prefixFrq << "Gaps : " << QString("%1\n").arg(numGaps, 8)
858 << prefixSys2 << prefixFrq << "Mean SNR : " << QString("%1\n").arg(sumSNR, 8, 'f', 1)
859 << prefixSys2 << prefixFrq << "Mean Multipath : " << QString("%1\n").arg(sumMP, 8, 'f', 2);
[6307]860 }
[6304]861 }
862
[6300]863 // Epoch-Specific Output
864 // ---------------------
865 bncSettings settings;
866 if (Qt::CheckState(settings.value("reqcLogSummaryOnly").toInt()) == Qt::Checked) {
867 return;
868 }
[6309]869 *_log << endl;
[6289]870 for (int iEpo = 0; iEpo < _qcFile._qcEpo.size(); iEpo++) {
871 const t_qcEpo& qcEpo = _qcFile._qcEpo[iEpo];
872
873 unsigned year, month, day, hour, min;
874 double sec;
875 qcEpo._epoTime.civil_date(year, month, day);
876 qcEpo._epoTime.civil_time(hour, min, sec);
877
878 QString dateStr;
879 QTextStream(&dateStr) << QString("> %1 %2 %3 %4 %5%6")
880 .arg(year, 4)
881 .arg(month, 2, 10, QChar('0'))
882 .arg(day, 2, 10, QChar('0'))
883 .arg(hour, 2, 10, QChar('0'))
884 .arg(min, 2, 10, QChar('0'))
885 .arg(sec, 11, 'f', 7);
886
[6290]887 *_log << dateStr << QString(" %1").arg(qcEpo._qcSat.size(), 2)
888 << QString(" %1").arg(qcEpo._PDOP, 4, 'f', 1)
889 << endl;
[6289]890
891 QMapIterator<t_prn, t_qcSat> itSat(qcEpo._qcSat);
892 while (itSat.hasNext()) {
893 itSat.next();
894 const t_prn& prn = itSat.key();
895 const t_qcSat& qcSat = itSat.value();
896
[6290]897 *_log << prn.toString().c_str()
[6295]898 << QString(" %1 %2").arg(qcSat._eleDeg, 6, 'f', 2).arg(qcSat._azDeg, 7, 'f', 2);
899
900 int numObsTypes = 0;
[6290]901 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
902 const t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
[6294]903 if (qcFrq._phaseValid) {
[6295]904 numObsTypes += 1;
[6294]905 }
906 if (qcFrq._codeValid) {
[6295]907 numObsTypes += 1;
[6294]908 }
[6295]909 }
[6298]910 *_log << QString(" %1").arg(numObsTypes, 2);
[6295]911
912 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
913 const t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
914 if (qcFrq._phaseValid) {
915 *_log << " L" << qcFrq._rnxType2ch << ' ';
916 if (qcFrq._slip) {
917 *_log << 's';
918 }
919 else {
920 *_log << '.';
921 }
922 if (qcFrq._gap) {
923 *_log << 'g';
924 }
925 else {
926 *_log << '.';
927 }
928 *_log << QString(" %1").arg(qcFrq._SNR, 4, 'f', 1);
[6294]929 }
[6295]930 if (qcFrq._codeValid) {
931 *_log << " C" << qcFrq._rnxType2ch << ' ';
932 if (qcFrq._gap) {
[6298]933 *_log << " g";
[6295]934 }
935 else {
[6298]936 *_log << " .";
[6295]937 }
938 *_log << QString(" %1").arg(qcFrq._stdMP, 3, 'f', 2);
[6290]939 }
940 }
941 *_log << endl;
[6289]942 }
943 }
[4689]944 _log->flush();
945}
[6523]946
947//
948////////////////////////////////////////////////////////////////////////////
949void t_reqcAnalyze::checkEphemerides() {
[6527]950
[6529]951 QString navFileName;
952 QStringListIterator namIt(_navFileNames);
953 bool firstName = true;
954 while (namIt.hasNext()) {
955 QFileInfo navFi(namIt.next());
956 if (firstName) {
957 firstName = false;
958 navFileName += navFi.fileName();
959 }
960 else {
961 navFileName += ", " + navFi.fileName();
962 }
963 }
[6867]964 if (_log) {
[7548]965 *_log << "Navigation File(s) : " << navFileName << endl;
[6867]966 }
[6523]967 QStringListIterator it(_navFileNames);
968 while (it.hasNext()) {
[6524]969 const QString& fileName = it.next();
970 unsigned numOK = 0;
971 unsigned numBad = 0;
972 bncEphUser ephUser(false);
973 t_rnxNavFile rnxNavFile(fileName, t_rnxNavFile::input);
974 for (unsigned ii = 0; ii < rnxNavFile.ephs().size(); ii++) {
975 t_eph* eph = rnxNavFile.ephs()[ii];
[8368]976 ephUser.putNewEph(eph, false);
[6524]977 if (eph->checkState() == t_eph::bad) {
978 ++numBad;
979 }
980 else {
981 ++numOK;
982 }
983 }
[6867]984 if (_log) {
[7548]985 *_log << "Ephemeris : " << numOK << " OK " << numBad << " BAD" << endl;
[6867]986 }
[6524]987 if (numBad > 0) {
988 for (unsigned ii = 0; ii < rnxNavFile.ephs().size(); ii++) {
989 t_eph* eph = rnxNavFile.ephs()[ii];
990 if (eph->checkState() == t_eph::bad) {
[6529]991 QFileInfo navFi(fileName);
[6867]992 if (_log) {
993 *_log << " Bad Ephemeris : " << navFi.fileName() << ' '
994 << eph->toString(3.0).left(24) << endl;
995 }
[6524]996 }
997 }
998 }
[6523]999 }
[6867]1000 if (_log) {
1001 *_log << endl;
1002 }
[6523]1003}
[7917]1004
1005void t_reqcAnalyze::setExpectedObs(const bncTime& startTime, const bncTime& endTime,
1006 double interval, const ColumnVector& xyzSta) {
1007
1008 for(QMap<t_prn, int>::iterator it = _numExpObs.begin();
1009 it != _numExpObs.end(); it++) {
1010 t_eph* eph = 0;
1011 for (int ie = 0; ie < _ephs.size(); ie++) {
1012 if (_ephs[ie]->prn().system() == it.key().system() &&
1013 _ephs[ie]->prn().number() == it.key().number()) {
1014 eph = _ephs[ie];
1015 break;
1016 }
1017 }
1018 if (eph) {
1019 int numExpObs = 0;
1020 bncTime epoTime;
1021 for (epoTime = startTime - interval; epoTime < endTime;
1022 epoTime = epoTime + interval) {
[8542]1023 ColumnVector xc(6);
[7917]1024 ColumnVector vv(3);
1025 if ( xyzSta.size() == 3 && (xyzSta[0] != 0.0 || xyzSta[1] != 0.0 || xyzSta[2] != 0.0) &&
1026 eph->getCrd(epoTime, xc, vv, false) == success) {
1027 double rho, eleSat, azSat;
1028 topos(xyzSta(1), xyzSta(2), xyzSta(3), xc(1), xc(2), xc(3), rho, eleSat, azSat);
1029 if ((eleSat * 180.0/M_PI) > 0.0) {
1030 numExpObs++;
1031 }
1032 }
1033 }
1034 it.value() = numExpObs;
1035 }
1036 else {
1037 if (!_navFileIncomplete.contains(it.key().system())) {
1038 _navFileIncomplete.append(it.key().system());
1039 }
1040 }
1041 }
1042}
Note: See TracBrowser for help on using the repository browser.