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

Last change on this file since 4590 was 4590, checked in by mervart, 12 years ago
File size: 15.2 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 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
[4361]42#include <iomanip>
[4579]43#include <qwt_plot_renderer.h>
[4574]44
[3899]45#include "reqcanalyze.h"
[3973]46#include "bncapp.h"
[3899]47#include "bncsettings.h"
[4254]48#include "reqcedit.h"
[4255]49#include "bncutils.h"
[4262]50#include "bncpostprocess.h"
[4300]51#include "graphwin.h"
[4307]52#include "polarplot.h"
[4577]53#include "availplot.h"
[3899]54
55using namespace std;
56
[4357]57const double SLIPTRESH = 5.0; // cycle-slip threshold (meters)
58
[3899]59// Constructor
60////////////////////////////////////////////////////////////////////////////
61t_reqcAnalyze::t_reqcAnalyze(QObject* parent) : QThread(parent) {
62
63 bncSettings settings;
[4254]64
[4257]65 _logFileName = settings.value("reqcOutLogFile").toString(); expandEnvVar(_logFileName);
66 _logFile = 0;
67 _log = 0;
[4254]68 _obsFileNames = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts);
[4257]69 _navFileNames = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts);
[4266]70
71 _currEpo = 0;
[4300]72
[4572]73 connect(this, SIGNAL(dspSkyPlot(const QString&,
74 const QByteArray&,
75 QVector<t_polarPoint*>*,
76 const QByteArray&,
77 QVector<t_polarPoint*>*,
78 const QByteArray&, double)),
79 this, SLOT(slotDspSkyPlot(const QString&,
[4556]80 const QByteArray&,
81 QVector<t_polarPoint*>*,
82 const QByteArray&,
83 QVector<t_polarPoint*>*,
[4572]84 const QByteArray&, double)));
85
[4584]86 connect(this, SIGNAL(dspAvailPlot(const QString&, const QByteArray&)),
87 this, SLOT(slotDspAvailPlot(const QString&, const QByteArray&)));
[3899]88}
89
90// Destructor
91////////////////////////////////////////////////////////////////////////////
92t_reqcAnalyze::~t_reqcAnalyze() {
[4255]93 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
94 delete _rnxObsFiles[ii];
95 }
96 for (int ii = 0; ii < _ephs.size(); ii++) {
97 delete _ephs[ii];
98 }
99 delete _log; _log = 0;
100 delete _logFile; _logFile = 0;
[4452]101 bncApp* app = (bncApp*) qApp;
102 if ( app->mode() != bncApp::interactive) {
103 app->exit(0);
104 }
[3899]105}
106
107//
108////////////////////////////////////////////////////////////////////////////
[4572]109void t_reqcAnalyze::slotDspSkyPlot(const QString& fileName,
110 const QByteArray& title1,
111 QVector<t_polarPoint*>* data1,
112 const QByteArray& title2,
113 QVector<t_polarPoint*>* data2,
114 const QByteArray& scaleTitle,
115 double maxValue) {
[4342]116
[4346]117 bncApp* app = dynamic_cast<bncApp*>(qApp);
[4448]118 if (app->GUIenabled()) {
[4334]119
[4556]120 if (maxValue == 0.0) {
121 if (data1) {
122 for (int ii = 0; ii < data1->size(); ii++) {
[4566]123 double val = data1->at(ii)->_value;
124 if (maxValue < val) {
125 maxValue = val;
[4556]126 }
127 }
[4356]128 }
[4557]129 if (data2) {
[4556]130 for (int ii = 0; ii < data2->size(); ii++) {
[4566]131 double val = data2->at(ii)->_value;
132 if (maxValue < val) {
133 maxValue = val;
[4556]134 }
135 }
[4356]136 }
137 }
[4357]138
[4556]139 QwtInterval scaleInterval(0.0, maxValue);
[4356]140
[4556]141 QVector<QWidget*> plots;
142 if (data1) {
143 t_polarPlot* plot1 = new t_polarPlot(QwtText(title1), scaleInterval,
144 app->mainWindow());
145 plot1->addCurve(data1);
146 plots << plot1;
147 }
[4557]148 if (data2) {
[4556]149 t_polarPlot* plot2 = new t_polarPlot(QwtText(title2), scaleInterval,
[4356]150 app->mainWindow());
[4556]151 plot2->addCurve(data2);
152 plots << plot2;
153 }
[4334]154
[4564]155 t_graphWin* graphWin = new t_graphWin(0, fileName, plots,
[4573]156 &scaleTitle, &scaleInterval);
[4334]157
[4445]158 graphWin->show();
159
[4451]160 bncSettings settings;
161 QString dirName = settings.value("reqcPlotDir").toString();
162 if (!dirName.isEmpty()) {
[4565]163 QByteArray ext = scaleTitle.isEmpty() ? "_SNR.png" : "_MP.png";
[4579]164 graphWin->savePNG(dirName, ext);
[4451]165 }
[4308]166 }
[4300]167}
168
169//
170////////////////////////////////////////////////////////////////////////////
[3899]171void t_reqcAnalyze::run() {
172
[4255]173 // Open Log File
174 // -------------
175 _logFile = new QFile(_logFileName);
[4517]176 if (_logFile->open(QIODevice::WriteOnly | QIODevice::Text)) {
177 _log = new QTextStream();
178 _log->setDevice(_logFile);
179 }
[4255]180
181 // Initialize RINEX Observation Files
182 // ----------------------------------
[4525]183 t_reqcEdit::initRnxObsFiles(_obsFileNames, _rnxObsFiles, _log);
[3899]184
[4257]185 // Read Ephemerides
186 // ----------------
187 t_reqcEdit::readEphemerides(_navFileNames, _ephs);
188
[4255]189 // Loop over all RINEX Files
190 // -------------------------
[4254]191 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
192 analyzeFile(_rnxObsFiles[ii]);
193 }
194
[4255]195 // Exit
196 // ----
[4452]197 emit finished();
198 deleteLater();
[3899]199}
[4254]200
201//
202////////////////////////////////////////////////////////////////////////////
[4260]203void t_reqcAnalyze::analyzeFile(t_rnxObsFile* obsFile) {
[4259]204
[4517]205 if (_log) {
206 *_log << "\nAnalyze File\n"
207 << "------------\n"
208 << obsFile->fileName().toAscii().data() << endl << endl;
209 }
[4260]210
[4584]211 _allObsMap.clear();
212 _availDataMap.clear();
[4343]213
[4342]214 // A priori Coordinates
215 // --------------------
216 ColumnVector xyz = obsFile->xyz();
217
[4262]218 // Loop over all Epochs
219 // --------------------
[4541]220 try {
221 while ( (_currEpo = obsFile->nextEpoch()) != 0) {
222
223 // Loop over all satellites
224 // ------------------------
225 for (unsigned iObs = 0; iObs < _currEpo->rnxSat.size(); iObs++) {
226 const t_rnxObsFile::t_rnxSat& rnxSat = _currEpo->rnxSat[iObs];
227 t_obs obs;
228 t_postProcessing::setObsFromRnx(obsFile, _currEpo, rnxSat, obs);
229
230 if (obs.satSys == 'R') {
[4590]231 // TODO: set channel number
[4541]232 }
233
234 QString prn = QString("%1%2").arg(obs.satSys)
235 .arg(obs.satNum, 2, 10, QChar('0'));
236
[4584]237 _allObsMap[prn].addObs(obs);
[4262]238 }
[4541]239
240 } // while (_currEpo)
241 }
242 catch (QString str) {
243 if (_log) {
244 *_log << "Exception " << str << endl;
[4262]245 }
[4541]246 else {
247 qDebug() << str;
248 }
249 return;
250 }
[4262]251
[4268]252 // Analyze the Multipath
253 // ---------------------
[4572]254 QVector<t_polarPoint*>* dataMP1 = new QVector<t_polarPoint*>;
255 QVector<t_polarPoint*>* dataMP2 = new QVector<t_polarPoint*>;
256 QVector<t_polarPoint*>* dataSNR1 = new QVector<t_polarPoint*>;
257 QVector<t_polarPoint*>* dataSNR2 = new QVector<t_polarPoint*>;
[4268]258
[4584]259 QMutableMapIterator<QString, t_allObs> it(_allObsMap);
[4268]260 while (it.hasNext()) {
261 it.next();
[4584]262 QString prn = it.key();
263 preparePlotData(prn, xyz, obsFile->interval(),
264 dataMP1, dataMP2, dataSNR1, dataSNR2);
[4268]265 }
266
[4572]267 emit dspSkyPlot(obsFile->fileName(), "MP1", dataMP1, "MP2", dataMP2,
268 "Meters", 2.0);
[4300]269
[4572]270 emit dspSkyPlot(obsFile->fileName(), "SNR1", dataSNR1, "SNR2", dataSNR2,
271 "", 9.0);
272
[4584]273 emit dspAvailPlot(obsFile->fileName(), "Availability L1");
[4572]274
[4517]275 if (_log) {
276 _log->flush();
277 }
[4254]278}
[4263]279
280//
281////////////////////////////////////////////////////////////////////////////
[4584]282void t_reqcAnalyze::t_allObs::addObs(const t_obs& obs) {
[4265]283
[4584]284 t_oneObs* newObs = new t_oneObs(obs.GPSWeek, obs.GPSWeeks);
[4354]285 bool okFlag = false;
[4338]286
[4268]287 // Compute the Multipath
288 // ----------------------
[4424]289 double L1 = obs.measdata("L1", 3.0);
[4571]290 if (L1 != 0) {
291 newObs->_hasL1 = true;
292 }
[4424]293 double L2 = obs.measdata("L2", 3.0);
[4571]294 if (L2 != 0) {
295 newObs->_hasL2 = true;
296 }
[4391]297 if (L1 != 0.0 && L2 != 0.0) {
[4266]298 double f1 = t_CST::f1(obs.satSys, obs.slotNum);
299 double f2 = t_CST::f2(obs.satSys, obs.slotNum);
300
[4391]301 L1 = L1 * t_CST::c / f1;
302 L2 = L2 * t_CST::c / f2;
[4266]303
[4424]304 double P1 = obs.measdata("C1", 3.0);
[4391]305 if (P1 != 0.0) {
306 newObs->_MP1 = P1 - L1 - 2.0*f2*f2/(f1*f1-f2*f2) * (L1 - L2);
[4354]307 okFlag = true;
[4268]308 }
[4424]309 double P2 = obs.measdata("C2", 3.0);
[4391]310 if (P2 != 0.0) {
311 newObs->_MP2 = P2 - L2 - 2.0*f1*f1/(f1*f1-f2*f2) * (L1 - L2);
[4354]312 okFlag = true;
[4268]313 }
[4265]314 }
[4338]315
[4559]316 // Signal-to-Noise
317 // ---------------
318 double S1 = obs.measdata("S1", 3.0);
319 if (S1 != 0.0) {
[4562]320 newObs->_SNR1 = floor(S1/6);
321 if (newObs->_SNR1 > 9.0) {
322 newObs->_SNR1 = 9.0;
323 }
324 if (newObs->_SNR1 < 1.0) {
325 newObs->_SNR1 = 1.0;
326 }
[4559]327 okFlag = true;
328 }
[4562]329 else {
330 if (obs.snrL1 > 0) {
331 newObs->_SNR1 = obs.snrL1;
332 okFlag = true;
333 }
334 }
[4559]335 double S2 = obs.measdata("S2", 3.0);
336 if (S2 != 0.0) {
[4562]337 newObs->_SNR2 = floor(S2/6);
338 if (newObs->_SNR2 > 9.0) {
339 newObs->_SNR2 = 9.0;
340 }
341 if (newObs->_SNR2 < 1.0) {
342 newObs->_SNR2 = 1.0;
343 }
[4559]344 okFlag = true;
345 }
[4562]346 else {
347 if (obs.snrL2 > 0) {
348 newObs->_SNR2 = obs.snrL2;
349 okFlag = true;
350 }
351 }
[4559]352
[4354]353 // Remember the Observation
354 // ------------------------
355 if (okFlag) {
[4584]356 _oneObsVec << newObs;
[4354]357 }
358 else {
359 delete newObs;
360 }
[4263]361}
[4350]362
363//
364////////////////////////////////////////////////////////////////////////////
[4584]365void t_reqcAnalyze::preparePlotData(const QString& prn, const ColumnVector& xyz,
[4572]366 double obsInterval,
367 QVector<t_polarPoint*>* dataMP1,
368 QVector<t_polarPoint*>* dataMP2,
369 QVector<t_polarPoint*>* dataSNR1,
[4584]370 QVector<t_polarPoint*>* dataSNR2) {
[4350]371
[4544]372 const int chunkStep = int( 30.0 / obsInterval); // chunk step (30 sec)
373 const int numEpo = int(600.0 / obsInterval); // # epochs in one chunk (10 min)
[4350]374
[4584]375 t_allObs& allObs = _allObsMap[prn];
376
[4590]377 bncTime currTime;
378 bncTime prevTime;
379
[4584]380 for (int chunkStart = 0; chunkStart + numEpo < allObs._oneObsVec.size();
[4361]381 chunkStart += chunkStep) {
[4351]382
[4572]383
[4351]384 // Compute Mean
385 // ------------
[4590]386 bncTime chunkStartTime;
387 bool availL1 = false;
388 bool availL2 = false;
389 bool missL1 = false;
390 bool missL2 = false;
391 bool slipFlag = false;
392 double meanMP1 = 0.0;
393 double meanMP2 = 0.0;
394 double minSNR1 = 0.0;
395 double minSNR2 = 0.0;
396 double aziDeg = 0.0;
397 double zenDeg = 0.0;
[4353]398
[4361]399 for (int ii = 0; ii < numEpo; ii++) {
[4351]400 int iEpo = chunkStart + ii;
[4584]401 const t_oneObs* oneObs = allObs._oneObsVec[iEpo];
[4572]402
[4590]403 currTime.set(oneObs->_GPSWeek, oneObs->_GPSWeeks);
404
405 // Compute the Azimuth and Zenith Distance
406 // ---------------------------------------
[4572]407 if (ii == 0) {
[4590]408 chunkStartTime = currTime;
409
410 if (xyz.size()) {
411 t_eph* eph = 0;
412 for (int ie = 0; ie < _ephs.size(); ie++) {
413 if (_ephs[ie]->prn() == prn) {
414 eph = _ephs[ie];
415 break;
416 }
417 }
418
419 if (eph) {
420 double xSat, ySat, zSat, clkSat;
421 eph->position(oneObs->_GPSWeek, oneObs->_GPSWeeks,
422 xSat, ySat, zSat, clkSat);
423
424 double rho, eleSat, azSat;
425 topos(xyz(1), xyz(2), xyz(3), xSat, ySat, zSat, rho, eleSat, azSat);
426
427 aziDeg = azSat * 180.0/M_PI;
428 zenDeg = 90.0 - eleSat * 180.0/M_PI;
429 }
430 }
[4572]431 }
432
[4590]433 // Check Interval
434 // --------------
435 double dt = 0.0;
436 if (prevTime.valid()) {
437 dt = currTime - prevTime;
438 }
439 if (dt != obsInterval) {
440 missL1 = true;
441 missL2 = true;
442 }
443 prevTime = currTime;
[4563]444
[4590]445 // Check L1 and L2 availability
446 // ----------------------------
447 if (oneObs->_hasL1) {
448 availL1 = true;
[4566]449 }
[4590]450 else {
451 missL1 = true;
[4566]452 }
[4590]453 if (oneObs->_hasL2) {
454 availL2 = true;
455 }
456 else {
457 missL2 = true;
458 }
459
460 // Check Minimal Signal-to-Noise Ratio
461 // -----------------------------------
462 if ( oneObs->_SNR1 > 0 && (minSNR1 == 0 || minSNR1 > oneObs->_SNR1) ) {
463 minSNR1 = oneObs->_SNR1;
464 }
465 if ( oneObs->_SNR2 > 0 && (minSNR2 == 0 || minSNR2 > oneObs->_SNR2) ) {
466 minSNR2 = oneObs->_SNR2;
467 }
468
[4353]469 // Check Slip
470 // ----------
471 if (ii > 0) {
[4584]472 double diff1 = oneObs->_MP1 - allObs._oneObsVec[iEpo-1]->_MP1;
473 double diff2 = oneObs->_MP2 - allObs._oneObsVec[iEpo-1]->_MP2;
[4357]474 if (fabs(diff1) > SLIPTRESH || fabs(diff2) > SLIPTRESH) {
[4353]475 slipFlag = true;
476 }
477 }
478
[4590]479 meanMP1 += oneObs->_MP1;
480 meanMP2 += oneObs->_MP2;
[4353]481 }
482
[4590]483 // Availability Plot Data
484 // ----------------------
485 if (availL1) {
486 _availDataMap[prn]._epoL1 << chunkStartTime.mjddec();
[4351]487 }
488
[4590]489 // Signal-to-Noise Ration Plot Data
490 // --------------------------------
491 (*dataSNR1) << (new t_polarPoint(aziDeg, zenDeg, minSNR1));
492 (*dataSNR2) << (new t_polarPoint(aziDeg, zenDeg, minSNR2));
[4355]493
[4590]494 // Compute the Multipath
495 // ---------------------
496 if (!slipFlag) {
497 meanMP1 /= numEpo;
498 meanMP2 /= numEpo;
499 double MP1 = 0.0;
500 double MP2 = 0.0;
501 for (int ii = 0; ii < numEpo; ii++) {
502 int iEpo = chunkStart + ii;
503 const t_oneObs* oneObs = allObs._oneObsVec[iEpo];
504 double diff1 = oneObs->_MP1 - meanMP1;
505 double diff2 = oneObs->_MP2 - meanMP2;
506 MP1 += diff1 * diff1;
507 MP2 += diff2 * diff2;
[4355]508 }
[4590]509 MP1 = sqrt(MP1 / (numEpo-1));
510 MP2 = sqrt(MP2 / (numEpo-1));
511 (*dataMP1) << (new t_polarPoint(aziDeg, zenDeg, MP1));
512 (*dataMP2) << (new t_polarPoint(aziDeg, zenDeg, MP2));
[4355]513 }
[4350]514 }
515}
[4572]516
517//
518////////////////////////////////////////////////////////////////////////////
519void t_reqcAnalyze::slotDspAvailPlot(const QString& fileName,
[4584]520 const QByteArray& title) {
[4572]521
[4574]522 if (dynamic_cast<bncApp*>(qApp)->GUIenabled()) {
[4573]523
[4584]524 t_availPlot* plot = new t_availPlot(0, &_availDataMap);
525 plot->setTitle(title);
[4573]526
527 QVector<QWidget*> plots;
[4574]528 plots << plot;
[4573]529 t_graphWin* graphWin = new t_graphWin(0, fileName, plots, 0, 0);
530 graphWin->show();
531
532 bncSettings settings;
533 QString dirName = settings.value("reqcPlotDir").toString();
534 if (!dirName.isEmpty()) {
535 QByteArray ext = "_AVAIL.png";
[4579]536 graphWin->savePNG(dirName, ext);
[4573]537 }
538 }
[4572]539}
Note: See TracBrowser for help on using the repository browser.