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

Last change on this file since 6292 was 6292, checked in by mervart, 9 years ago
File size: 24.5 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"
[4307]51#include "polarplot.h"
[4577]52#include "availplot.h"
[4662]53#include "eleplot.h"
[4672]54#include "dopplot.h"
[3899]55
56using namespace std;
57
58// Constructor
59////////////////////////////////////////////////////////////////////////////
60t_reqcAnalyze::t_reqcAnalyze(QObject* parent) : QThread(parent) {
61
62 bncSettings settings;
[4254]63
[4257]64 _logFileName = settings.value("reqcOutLogFile").toString(); expandEnvVar(_logFileName);
65 _logFile = 0;
66 _log = 0;
[6271]67 _currEpo = 0;
[4254]68 _obsFileNames = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts);
[4257]69 _navFileNames = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts);
[6275]70
71 connect(this, SIGNAL(dspSkyPlot(const QString&, const QByteArray&, QVector<t_polarPoint*>*,
72 const QByteArray&, QVector<t_polarPoint*>*,
73 const QByteArray&, double)),
74 this, SLOT(slotDspSkyPlot(const QString&, const QByteArray&, QVector<t_polarPoint*>*,
75 const QByteArray&, QVector<t_polarPoint*>*,
76 const QByteArray&, double)));
77
78 connect(this, SIGNAL(dspAvailPlot(const QString&, const QByteArray&)),
79 this, SLOT(slotDspAvailPlot(const QString&, const QByteArray&)));
[3899]80}
81
82// Destructor
83////////////////////////////////////////////////////////////////////////////
84t_reqcAnalyze::~t_reqcAnalyze() {
[4255]85 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
86 delete _rnxObsFiles[ii];
87 }
88 for (int ii = 0; ii < _ephs.size(); ii++) {
89 delete _ephs[ii];
90 }
91 delete _log; _log = 0;
92 delete _logFile; _logFile = 0;
[5072]93 if (BNC_CORE->mode() != t_bncCore::interactive) {
[5066]94 qApp->exit(0);
[4452]95 }
[3899]96}
97
[6255]98//
[3899]99////////////////////////////////////////////////////////////////////////////
100void t_reqcAnalyze::run() {
101
[4255]102 // Open Log File
103 // -------------
104 _logFile = new QFile(_logFileName);
[4517]105 if (_logFile->open(QIODevice::WriteOnly | QIODevice::Text)) {
106 _log = new QTextStream();
107 _log->setDevice(_logFile);
108 }
[4255]109
110 // Initialize RINEX Observation Files
111 // ----------------------------------
[4525]112 t_reqcEdit::initRnxObsFiles(_obsFileNames, _rnxObsFiles, _log);
[3899]113
[4257]114 // Read Ephemerides
115 // ----------------
116 t_reqcEdit::readEphemerides(_navFileNames, _ephs);
117
[4255]118 // Loop over all RINEX Files
119 // -------------------------
[4254]120 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
121 analyzeFile(_rnxObsFiles[ii]);
122 }
123
[4255]124 // Exit
125 // ----
[4452]126 emit finished();
127 deleteLater();
[3899]128}
[4254]129
[6255]130//
[4254]131////////////////////////////////////////////////////////////////////////////
[4260]132void t_reqcAnalyze::analyzeFile(t_rnxObsFile* obsFile) {
[4259]133
[6271]134 _qcFile.clear();
[4343]135
[4342]136 // A priori Coordinates
137 // --------------------
[4679]138 ColumnVector xyzSta = obsFile->xyz();
[4342]139
[4262]140 // Loop over all Epochs
141 // --------------------
[4541]142 try {
[6271]143 bool firstEpo = true;
[4541]144 while ( (_currEpo = obsFile->nextEpoch()) != 0) {
[6271]145 if (firstEpo) {
146 firstEpo = false;
147 _qcFile._startTime = _currEpo->tt;
148 _qcFile._antennaName = obsFile->antennaName();
149 _qcFile._markerName = obsFile->markerName();
150 _qcFile._receiverType = obsFile->receiverType();
151 _qcFile._interval = obsFile->interval();
[4688]152 }
[6271]153 _qcFile._endTime = _currEpo->tt;
[6255]154
[6271]155 t_qcEpo qcEpo;
156 qcEpo._epoTime = _currEpo->tt;
157 qcEpo._PDOP = cmpDOP(xyzSta);
158
[4541]159 // Loop over all satellites
160 // ------------------------
161 for (unsigned iObs = 0; iObs < _currEpo->rnxSat.size(); iObs++) {
162 const t_rnxObsFile::t_rnxSat& rnxSat = _currEpo->rnxSat[iObs];
[6271]163 t_satObs satObs;
164 t_rnxObsFile::setObsFromRnx(obsFile, _currEpo, rnxSat, satObs);
[6288]165 t_qcSat& qcSat = qcEpo._qcSat[satObs._prn];
166 setQcObs(qcEpo._epoTime, xyzSta, satObs, qcSat);
167 updateQcSat(qcSat, _qcFile._qcSatSum[satObs._prn]);
[4262]168 }
[6271]169 _qcFile._qcEpo.push_back(qcEpo);
170 }
[6255]171
[6281]172 analyzeMultipath();
173
[6271]174 preparePlotData(obsFile);
[4678]175
[6284]176 printReport(obsFile);
[4541]177 }
178 catch (QString str) {
179 if (_log) {
180 *_log << "Exception " << str << endl;
[4262]181 }
[4541]182 else {
[6255]183 qDebug() << str;
[4541]184 }
185 }
[6271]186}
[4262]187
[6271]188// Compute Dilution of Precision
189////////////////////////////////////////////////////////////////////////////
190double t_reqcAnalyze::cmpDOP(const ColumnVector& xyzSta) const {
[4268]191
[6271]192 if (xyzSta.size() != 3) {
193 return 0.0;
[4268]194 }
195
[6271]196 unsigned nSat = _currEpo->rnxSat.size();
[4706]197
[6271]198 if (nSat < 4) {
199 return 0.0;
[4718]200 }
[6271]201
202 Matrix AA(nSat, 4);
203
204 unsigned nSatUsed = 0;
205 for (unsigned iSat = 0; iSat < nSat; iSat++) {
206
207 const t_rnxObsFile::t_rnxSat& rnxSat = _currEpo->rnxSat[iSat];
208 const t_prn& prn = rnxSat.prn;
209
210 t_eph* eph = 0;
211 for (int ie = 0; ie < _ephs.size(); ie++) {
212 if (_ephs[ie]->prn() == prn) {
213 eph = _ephs[ie];
214 break;
215 }
[4718]216 }
[6271]217 if (eph) {
218 ColumnVector xSat(4);
219 ColumnVector vv(3);
220 if (eph->getCrd(_currEpo->tt, xSat, vv, false) == success) {
221 ++nSatUsed;
222 ColumnVector dx = xSat.Rows(1,3) - xyzSta;
223 double rho = dx.norm_Frobenius();
224 AA(nSatUsed,1) = dx(1) / rho;
225 AA(nSatUsed,2) = dx(2) / rho;
226 AA(nSatUsed,3) = dx(3) / rho;
227 AA(nSatUsed,4) = 1.0;
228 }
[4718]229 }
230 }
[6271]231
232 if (nSatUsed < 4) {
233 return 0.0;
234 }
235
236 AA = AA.Rows(1, nSatUsed);
237
238 SymmetricMatrix QQ;
239 QQ << AA.t() * AA;
240 QQ = QQ.i();
241
242 return sqrt(QQ.trace());
[4254]243}
[4263]244
[6255]245//
[4263]246////////////////////////////////////////////////////////////////////////////
[6288]247void t_reqcAnalyze::updateQcSat(const t_qcSat& qcSat, t_qcSatSum& qcSatSum) {
[6285]248
[6288]249 for (int ii = 0; ii < qcSat._qcFrq.size(); ii++) {
250 const t_qcFrq& qcFrq = qcSat._qcFrq[ii];
[6285]251 t_qcFrqSum& qcFrqSum = qcSatSum._qcFrqSum[qcFrq._rnxType2ch];
252 qcFrqSum._numObs += 1;
253 if (qcFrq._slip) {
254 qcFrqSum._numSlipsFlagged += 1;
255 }
256 if (qcFrq._gap) {
257 qcFrqSum._numGaps += 1;
258 }
[6271]259 }
260}
[4265]261
[6271]262//
263////////////////////////////////////////////////////////////////////////////
[6281]264void t_reqcAnalyze::setQcObs(const bncTime& epoTime, const ColumnVector& xyzSta,
[6288]265 const t_satObs& satObs, t_qcSat& qcSat) {
[4338]266
[6281]267 t_eph* eph = 0;
268 for (int ie = 0; ie < _ephs.size(); ie++) {
269 if (_ephs[ie]->prn() == satObs._prn) {
270 eph = _ephs[ie];
271 break;
[6271]272 }
[6281]273 }
274 if (eph) {
275 ColumnVector xc(4);
276 ColumnVector vv(3);
277 if (xyzSta.size() && eph->getCrd(epoTime, xc, vv, false) == success) {
278 double rho, eleSat, azSat;
279 topos(xyzSta(1), xyzSta(2), xyzSta(3), xc(1), xc(2), xc(3), rho, eleSat, azSat);
[6288]280 qcSat._eleSet = true;
281 qcSat._azDeg = azSat * 180.0/M_PI;
282 qcSat._eleDeg = eleSat * 180.0/M_PI;
[6281]283 }
284 if (satObs._prn.system() == 'R') {
[6288]285 qcSat._slotSet = true;
286 qcSat._slotNum = eph->slotNum();
[6271]287 }
288 }
289
[4608]290 // Availability and Slip Flags
291 // ---------------------------
[6285]292 for (unsigned ii = 0; ii < satObs._obs.size(); ii++) {
293
294 const t_frqObs* frqObs = satObs._obs[ii];
295
[6288]296 qcSat._qcFrq.push_back(t_qcFrq());
297 t_qcFrq& qcFrq = qcSat._qcFrq.back();
[6285]298
299 qcFrq._rnxType2ch = QString(frqObs->_rnxType2ch.c_str());
300 qcFrq._SNR = frqObs->_snr;
301 qcFrq._slip = frqObs->_slip;
302
303 // Check Gaps
304 // ----------
305 if (qcFrq._lastObsTime.valid()) {
306 double dt = epoTime - qcFrq._lastObsTime;
307 if (dt > 1.5 * _qcFile._interval) {
308 qcFrq._gap = true;
[6137]309 }
310 }
[6285]311 qcFrq._lastObsTime = epoTime;
312
313 // Compute the Multipath Linear Combination
314 // ----------------------------------------
[6292]315 if (frqObs->_codeValid) {
[6285]316 t_frequency::type fA;
317 t_frequency::type fB;
318 if (satObs._prn.system() == 'G') {
319 if (frqObs->_rnxType2ch[0] == '1') {
320 fA = t_frequency::G1;
321 fB = t_frequency::G2;
322 }
323 else if (frqObs->_rnxType2ch[0] == '2') {
324 fA = t_frequency::G2;
325 fB = t_frequency::G1;
326 }
[6137]327 }
[6285]328 else if (satObs._prn.system() == 'R') {
329 if (frqObs->_rnxType2ch[0] == '1') {
330 fA = t_frequency::R1;
331 fB = t_frequency::R2;
332 }
333 else if (frqObs->_rnxType2ch[0] == '2') {
334 fA = t_frequency::R2;
335 fB = t_frequency::R1;
336 }
[6137]337 }
[6285]338 else if (satObs._prn.system() == 'E') {
339 if (frqObs->_rnxType2ch[0] == '1') {
340 fA = t_frequency::E1;
341 fB = t_frequency::E5;
342 }
343 else if (frqObs->_rnxType2ch[0] == '5') {
344 fA = t_frequency::E5;
345 fB = t_frequency::E1;
346 }
[6137]347 }
[4608]348
[6285]349 if (fA != t_frequency::dummy && fB != t_frequency::dummy) {
[6292]350 double f_a = t_CST::freq(fA, qcSat._slotNum);
351 double f_b = t_CST::freq(fB, qcSat._slotNum);
352 double C_a = frqObs->_code;
353
354 bool foundA = false;
355 double L_a = 0.0;
356 bool foundB = false;
357 double L_b = 0.0;
[6285]358 for (unsigned jj = 0; jj < satObs._obs.size(); jj++) {
[6292]359 const t_frqObs* frqObsHlp = satObs._obs[jj];
360 if (frqObsHlp->_rnxType2ch[0] == t_frequency::toString(fA)[1] &&
361 frqObsHlp->_phaseValid) {
362 foundA = true;
363 L_a = frqObsHlp->_phase * t_CST::c / f_a;
[6285]364 }
[6292]365 else if (frqObsHlp->_rnxType2ch[0] == t_frequency::toString(fB)[1] &&
366 frqObsHlp->_phaseValid) {
367 foundB = true;
368 L_b = frqObsHlp->_phase * t_CST::c / f_b;
369 }
[6285]370 }
[6292]371 if (foundA && foundB) {
372 qcFrq._setMP = true;
373 qcFrq._rawMP = C_a - L_a - 2.0*f_b*f_b/(f_a*f_a-f_b*f_b) * (L_a - L_b);
374 }
[6285]375 }
376 }
[6291]377 } // satObs loop
[4263]378}
[4350]379
[6255]380//
[4350]381////////////////////////////////////////////////////////////////////////////
[6281]382void t_reqcAnalyze::analyzeMultipath() {
[4675]383
[6271]384 const double SLIPTRESH = 10.0; // cycle-slip threshold (meters)
385 const double chunkStep = 600.0; // 10 minutes
[4584]386
[6271]387 // Loop over all satellites available
388 // ----------------------------------
[6285]389 QMutableMapIterator<t_prn, t_qcSatSum> itSat(_qcFile._qcSatSum);
390 while (itSat.hasNext()) {
391 itSat.next();
392 const t_prn& prn = itSat.key();
393 t_qcSatSum& qcSatSum = itSat.value();
[4351]394
[6285]395 // Loop over all frequencies available
396 // -----------------------------------
397 QMutableMapIterator<QString, t_qcFrqSum> itFrq(qcSatSum._qcFrqSum);
398 while (itFrq.hasNext()) {
399 itFrq.next();
400 const QString& frqType = itFrq.key();
401 t_qcFrqSum& qcFrqSum = itFrq.value();
[4702]402
[4353]403
[6285]404 // Loop over all Chunks of Data
405 // ----------------------------
406 for (bncTime chunkStart = _qcFile._startTime;
407 chunkStart < _qcFile._endTime; chunkStart += chunkStep) {
408
409 bncTime chunkEnd = chunkStart + chunkStep;
410
411 QVector<t_qcFrq*> frqVec;
412 QVector<double> MP;
[6271]413
[6285]414 // Loop over all Epochs within one Chunk of Data
415 // ---------------------------------------------
416 for (int iEpo = 0; iEpo < _qcFile._qcEpo.size(); iEpo++) {
417 t_qcEpo& qcEpo = _qcFile._qcEpo[iEpo];
418 if (chunkStart <= qcEpo._epoTime && qcEpo._epoTime < chunkEnd) {
[6288]419 if (qcEpo._qcSat.contains(prn)) {
420 t_qcSat& qcSat = qcEpo._qcSat[prn];
421 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
422 t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
[6285]423 if (qcFrq._rnxType2ch == frqType) {
424 frqVec << &qcFrq;
425 if (qcFrq._setMP) {
426 MP << qcFrq._rawMP;
427 }
428 }
429 }
[6213]430 }
[4590]431 }
432 }
[4563]433
[6285]434 // Compute the multipath mean and standard deviation
435 // -------------------------------------------------
436 if (MP.size() > 1) {
437 double meanMP = 0.0;
438 for (int ii = 0; ii < MP.size(); ii++) {
439 meanMP += MP[ii];
[6271]440 }
[6285]441 meanMP /= MP.size();
442
443 bool slipMP = false;
444
445 double stdMP = 0.0;
446 for (int ii = 0; ii < MP.size(); ii++) {
447 double diff = MP[ii] - meanMP;
448 if (fabs(diff) > SLIPTRESH) {
449 slipMP = true;
450 break;
451 }
452 stdMP += diff * diff;
453 }
454
[6281]455 if (slipMP) {
[6285]456 stdMP = 0.0;
457 stdMP = 0.0;
458 qcFrqSum._numSlipsFound += 1;
[6281]459 }
460 else {
[6285]461 stdMP = sqrt(stdMP / (MP.size()-1));
[6281]462 }
[6285]463
464 for (int ii = 0; ii < frqVec.size(); ii++) {
465 t_qcFrq* qcFrq = frqVec[ii];
466 if (slipMP) {
467 qcFrq->_slip = true;
468 }
469 else {
470 qcFrq->_stdMP = stdMP;
471 }
472 }
[6281]473 }
[6285]474 } // chunk loop
475 } // frq loop
476 } // sat loop
[6281]477}
478
479//
480////////////////////////////////////////////////////////////////////////////
481void t_reqcAnalyze::preparePlotData(const t_rnxObsFile* obsFile) {
482
483 QVector<t_polarPoint*>* dataMP1 = new QVector<t_polarPoint*>;
484 QVector<t_polarPoint*>* dataMP2 = new QVector<t_polarPoint*>;
485 QVector<t_polarPoint*>* dataSNR1 = new QVector<t_polarPoint*>;
486 QVector<t_polarPoint*>* dataSNR2 = new QVector<t_polarPoint*>;
487
488 bncSettings settings;
489 QString reqSkyPlotSystems = settings.value("reqcSkyPlotSystems").toString();
490 bool plotGPS = false;
491 bool plotGlo = false;
492 bool plotGal = false;
493 if (reqSkyPlotSystems == "GPS") {
494 plotGPS = true;
495 }
496 else if (reqSkyPlotSystems == "GLONASS") {
497 plotGlo = true;
498 }
499 else if (reqSkyPlotSystems == "Galileo") {
500 plotGal = true;
501 }
502 else {
503 plotGPS = true;
504 plotGlo = true;
505 plotGal = true;
506 }
507
508 // Loop over all observations
509 // --------------------------
510 for (int iEpo = 0; iEpo < _qcFile._qcEpo.size(); iEpo++) {
511 t_qcEpo& qcEpo = _qcFile._qcEpo[iEpo];
[6288]512 QMapIterator<t_prn, t_qcSat> it(qcEpo._qcSat);
[6281]513 while (it.hasNext()) {
514 it.next();
515 const t_prn& prn = it.key();
[6288]516 const t_qcSat& qcSat = it.value();
[6271]517 if ( (prn.system() == 'G' && plotGPS) ||
518 (prn.system() == 'R' && plotGlo) ||
519 (prn.system() == 'E' && plotGal) ) {
[6281]520
[6288]521 if (qcSat._eleSet) {
[6286]522 QString frqType1;
523 QString frqType2;
[6288]524 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
525 const t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
[6287]526 if (qcFrq._rnxType2ch[0] == '1' && frqType1.isEmpty()) {
[6286]527 frqType1 = qcFrq._rnxType2ch;
528 }
[6287]529 if (qcFrq._rnxType2ch[0] == '2' && frqType2.isEmpty()) {
[6286]530 frqType2 = qcFrq._rnxType2ch;
531 }
532 if (qcFrq._rnxType2ch == frqType1) {
[6288]533 (*dataSNR1) << (new t_polarPoint(qcSat._azDeg, 90.0 - qcSat._eleDeg, qcFrq._SNR));
534 (*dataMP1) << (new t_polarPoint(qcSat._azDeg, 90.0 - qcSat._eleDeg, qcFrq._stdMP));
[6286]535 }
536 else if (qcFrq._rnxType2ch == frqType2) {
[6288]537 (*dataSNR2) << (new t_polarPoint(qcSat._azDeg, 90.0 - qcSat._eleDeg, qcFrq._SNR));
538 (*dataMP2) << (new t_polarPoint(qcSat._azDeg, 90.0 - qcSat._eleDeg, qcFrq._stdMP));
[6286]539 }
540 }
[6284]541 }
[4700]542 }
[4353]543 }
[6271]544 }
[4353]545
[6271]546 // Show the plots
547 // --------------
548 if (BNC_CORE->GUIenabled()) {
549 QFileInfo fileInfo(obsFile->fileName());
550 QByteArray title = fileInfo.fileName().toAscii();
[6286]551 emit dspSkyPlot(obsFile->fileName(), "MP1", dataMP1, "MP2", dataMP2, "Meters", 2.0);
552 emit dspSkyPlot(obsFile->fileName(), "SNR1", dataSNR1, "SNR2", dataSNR2, "dbHz", 54.0);
[6275]553 emit dspAvailPlot(obsFile->fileName(), title);
[6271]554 }
555 else {
556 for (int ii = 0; ii < dataMP1->size(); ii++) {
557 delete dataMP1->at(ii);
[4351]558 }
[6271]559 delete dataMP1;
560 for (int ii = 0; ii < dataMP2->size(); ii++) {
561 delete dataMP2->at(ii);
[4591]562 }
[6271]563 delete dataMP2;
564 for (int ii = 0; ii < dataSNR1->size(); ii++) {
565 delete dataSNR1->at(ii);
[4659]566 }
[6271]567 delete dataSNR1;
568 for (int ii = 0; ii < dataSNR2->size(); ii++) {
569 delete dataSNR2->at(ii);
[5141]570 }
[6271]571 delete dataSNR2;
[4350]572 }
573}
[4572]574
[6255]575//
[4572]576////////////////////////////////////////////////////////////////////////////
[6275]577void t_reqcAnalyze::slotDspSkyPlot(const QString& fileName, const QByteArray& title1,
578 QVector<t_polarPoint*>* data1, const QByteArray& title2,
579 QVector<t_polarPoint*>* data2, const QByteArray& scaleTitle,
580 double maxValue) {
[4572]581
[5068]582 if (BNC_CORE->GUIenabled()) {
[4573]583
[6271]584 if (maxValue == 0.0) {
585 if (data1) {
586 for (int ii = 0; ii < data1->size(); ii++) {
587 double val = data1->at(ii)->_value;
588 if (maxValue < val) {
589 maxValue = val;
590 }
591 }
592 }
593 if (data2) {
594 for (int ii = 0; ii < data2->size(); ii++) {
595 double val = data2->at(ii)->_value;
596 if (maxValue < val) {
597 maxValue = val;
598 }
599 }
600 }
601 }
[4659]602
[6271]603 QwtInterval scaleInterval(0.0, maxValue);
[4671]604
[4573]605 QVector<QWidget*> plots;
[6271]606 if (data1) {
607 t_polarPlot* plot1 = new t_polarPlot(QwtText(title1), scaleInterval,
608 BNC_CORE->mainWindow());
609 plot1->addCurve(data1);
610 plots << plot1;
611 }
612 if (data2) {
613 t_polarPlot* plot2 = new t_polarPlot(QwtText(title2), scaleInterval,
614 BNC_CORE->mainWindow());
615 plot2->addCurve(data2);
616 plots << plot2;
617 }
[4666]618
[6271]619 t_graphWin* graphWin = new t_graphWin(0, fileName, plots,
620 &scaleTitle, &scaleInterval);
[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();
[6280]653 t_plotData& data = plotDataMap[prn];
[6286]654
[6283]655 data._mjdX24 << mjdX24;
[6288]656 data._eleDeg << qcSat._eleDeg;
[6286]657
658 QString frqType1;
659 QString frqType2;
[6288]660 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
661 const t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
[6287]662 if (qcFrq._rnxType2ch[0] == '1' && frqType1.isEmpty()) {
[6286]663 frqType1 = qcFrq._rnxType2ch;
[6284]664 }
[6287]665 if (qcFrq._rnxType2ch[0] == '2' && frqType2.isEmpty()) {
[6286]666 frqType2 = qcFrq._rnxType2ch;
[6284]667 }
[6286]668 if (qcFrq._rnxType2ch == frqType1) {
669 if (qcFrq._slip) {
670 data._L1slip << mjdX24;
671 }
672 else if (qcFrq._gap) {
673 data._L1gap << mjdX24;
674 }
675 else {
676 data._L1ok << mjdX24;
677 }
[6284]678 }
[6286]679 else if (qcFrq._rnxType2ch == frqType2) {
680 if (qcFrq._slip) {
681 data._L2slip << mjdX24;
682 }
683 else if (qcFrq._gap) {
684 data._L2gap << mjdX24;
685 }
686 else {
687 data._L2ok << mjdX24;
688 }
[6284]689 }
690 }
[6278]691 }
692 }
693
[6271]694 if (BNC_CORE->GUIenabled()) {
[6278]695 t_availPlot* plotA = new t_availPlot(0, plotDataMap);
[6271]696 plotA->setTitle(title);
[4679]697
[6278]698 t_elePlot* plotZ = new t_elePlot(0, plotDataMap);
[4679]699
[6279]700 t_dopPlot* plotD = new t_dopPlot(0, plotData);
[4679]701
[6271]702 QVector<QWidget*> plots;
703 plots << plotA << plotZ << plotD;
704 t_graphWin* graphWin = new t_graphWin(0, fileName, plots, 0, 0);
[4679]705
[6271]706 int ww = QFontMetrics(graphWin->font()).width('w');
707 graphWin->setMinimumSize(120*ww, 40*ww);
[4679]708
[6271]709 graphWin->show();
[4679]710
[6271]711 bncSettings settings;
712 QString dirName = settings.value("reqcPlotDir").toString();
713 if (!dirName.isEmpty()) {
714 QByteArray ext = "_A.png";
715 graphWin->savePNG(dirName, ext);
[4679]716 }
[4681]717 }
[4679]718}
[4689]719
720// Finish the report
721////////////////////////////////////////////////////////////////////////////
[6284]722void t_reqcAnalyze::printReport(const t_rnxObsFile* obsFile) {
[5368]723
[4689]724 if (!_log) {
725 return;
726 }
727
[6284]728 *_log << "File: " << obsFile->fileName().toAscii().data() << endl
729 << "Marker name: " << _qcFile._markerName << endl
730 << "Receiver: " << _qcFile._receiverType << endl
731 << "Antenna: " << _qcFile._antennaName << endl
[6271]732 << "Start time: " << _qcFile._startTime.datestr().c_str() << ' '
733 << _qcFile._startTime.timestr().c_str() << endl
[6284]734 << "End time: " << _qcFile._endTime.datestr().c_str() << ' '
735 << _qcFile._endTime.timestr().c_str() << endl
736 << "Interval: " << _qcFile._interval << endl
[6286]737 << "# Sat.: " << _qcFile._qcSatSum.size() << endl;
[4689]738
[4701]739 int numObs = 0;
740 int numSlipsFlagged = 0;
741 int numSlipsFound = 0;
[6286]742 QMapIterator<t_prn, t_qcSatSum> itSat(_qcFile._qcSatSum);
743 while (itSat.hasNext()) {
744 itSat.next();
745 const t_qcSatSum& qcSatSum = itSat.value();
746
747 QMapIterator<QString, t_qcFrqSum> itFrq(qcSatSum._qcFrqSum);
748 while (itFrq.hasNext()) {
749 itFrq.next();
750 const t_qcFrqSum& qcFrqSum = itFrq.value();
751 numObs += qcFrqSum._numObs;
752 numSlipsFlagged += qcFrqSum._numSlipsFlagged;
753 numSlipsFound += qcFrqSum._numSlipsFound;
754 }
[4693]755 }
[4701]756 *_log << "# Obs.: " << numObs << endl
757 << "# Slips (file): " << numSlipsFlagged << endl
758 << "# Slips (found): " << numSlipsFound << endl;
[4693]759
[6289]760 for (int iEpo = 0; iEpo < _qcFile._qcEpo.size(); iEpo++) {
761 const t_qcEpo& qcEpo = _qcFile._qcEpo[iEpo];
762
763 unsigned year, month, day, hour, min;
764 double sec;
765 qcEpo._epoTime.civil_date(year, month, day);
766 qcEpo._epoTime.civil_time(hour, min, sec);
767
768 QString dateStr;
769 QTextStream(&dateStr) << QString("> %1 %2 %3 %4 %5%6")
770 .arg(year, 4)
771 .arg(month, 2, 10, QChar('0'))
772 .arg(day, 2, 10, QChar('0'))
773 .arg(hour, 2, 10, QChar('0'))
774 .arg(min, 2, 10, QChar('0'))
775 .arg(sec, 11, 'f', 7);
776
[6290]777 *_log << dateStr << QString(" %1").arg(qcEpo._qcSat.size(), 2)
778 << QString(" %1").arg(qcEpo._PDOP, 4, 'f', 1)
779 << endl;
[6289]780
781 QMapIterator<t_prn, t_qcSat> itSat(qcEpo._qcSat);
782 while (itSat.hasNext()) {
783 itSat.next();
784 const t_prn& prn = itSat.key();
785 const t_qcSat& qcSat = itSat.value();
786
[6290]787 *_log << prn.toString().c_str()
788 << QString(" %1 %2").arg(qcSat._eleDeg, 6, 'f', 2).arg(qcSat._azDeg, 7, 'f', 2)
789 << QString(" %1").arg(qcSat._qcFrq.size());
790 for (int iFrq = 0; iFrq < qcSat._qcFrq.size(); iFrq++) {
791 const t_qcFrq& qcFrq = qcSat._qcFrq[iFrq];
792 *_log << " " << qcFrq._rnxType2ch << ' ';
793 if (qcFrq._slip) {
794 *_log << 'S';
795 }
796 else {
797 *_log << '.';
798 }
799 if (qcFrq._slip) {
800 *_log << 'G';
801 }
802 else {
803 *_log << '.';
804 }
805 *_log << QString(" %1").arg(qcFrq._SNR, 4, 'f', 1)
806 << QString(" %1").arg(qcFrq._stdMP, 2, 'f', 1);
807 }
808 *_log << endl;
[6289]809 }
810 }
[4689]811 _log->flush();
812}
Note: See TracBrowser for help on using the repository browser.