[3900] | 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 | #ifndef REQCANALYZE_H
|
---|
| 26 | #define REQCANALYZE_H
|
---|
| 27 |
|
---|
| 28 | #include <QtCore>
|
---|
[4254] | 29 | #include "rnxobsfile.h"
|
---|
| 30 | #include "rnxnavfile.h"
|
---|
[5738] | 31 | #include "ephemeris.h"
|
---|
[6137] | 32 | #include "satObs.h"
|
---|
[3900] | 33 |
|
---|
[4338] | 34 | class t_polarPoint;
|
---|
| 35 |
|
---|
[4584] | 36 | class t_availData {
|
---|
| 37 | public:
|
---|
[4591] | 38 | QVector<double> _L1ok;
|
---|
| 39 | QVector<double> _L2ok;
|
---|
| 40 | QVector<double> _L1slip;
|
---|
| 41 | QVector<double> _L2slip;
|
---|
| 42 | QVector<double> _L1gap;
|
---|
| 43 | QVector<double> _L2gap;
|
---|
[4662] | 44 | QVector<double> _eleDeg;
|
---|
| 45 | QVector<double> _eleTim;
|
---|
[4584] | 46 | };
|
---|
| 47 |
|
---|
[4687] | 48 | class t_prnStat {
|
---|
| 49 | public:
|
---|
| 50 | t_prnStat() {
|
---|
[4701] | 51 | _numObs = 0;
|
---|
| 52 | _numSlipsFlagged = 0;
|
---|
| 53 | _numSlipsFound = 0;
|
---|
| 54 | _numGaps = 0;
|
---|
[4687] | 55 | }
|
---|
| 56 | int _numObs;
|
---|
[4701] | 57 | int _numSlipsFlagged;
|
---|
| 58 | int _numSlipsFound;
|
---|
[4687] | 59 | int _numGaps;
|
---|
| 60 | };
|
---|
| 61 |
|
---|
[4672] | 62 | class t_obsStat {
|
---|
| 63 | public:
|
---|
[4674] | 64 | void reset() {
|
---|
| 65 | _mjdX24.clear();
|
---|
| 66 | _numSat.clear();
|
---|
| 67 | _PDOP.clear();
|
---|
[4687] | 68 | _prnStat.clear();
|
---|
[4674] | 69 | }
|
---|
[4672] | 70 | QVector<double> _mjdX24;
|
---|
| 71 | QVector<double> _numSat;
|
---|
| 72 | QVector<double> _PDOP;
|
---|
[4687] | 73 | bncTime _startTime;
|
---|
| 74 | bncTime _endTime;
|
---|
| 75 | QString _antennaName;
|
---|
| 76 | QString _markerName;
|
---|
| 77 | QString _receiverType;
|
---|
[4688] | 78 | double _interval;
|
---|
[4687] | 79 | QMap<QString, t_prnStat> _prnStat;
|
---|
[4672] | 80 | };
|
---|
| 81 |
|
---|
[3900] | 82 | class t_reqcAnalyze : public QThread {
|
---|
| 83 | Q_OBJECT
|
---|
| 84 |
|
---|
| 85 | public:
|
---|
| 86 | t_reqcAnalyze(QObject* parent);
|
---|
| 87 |
|
---|
| 88 | protected:
|
---|
| 89 | ~t_reqcAnalyze();
|
---|
| 90 |
|
---|
| 91 | signals:
|
---|
| 92 | void finished();
|
---|
[4572] | 93 | void dspSkyPlot(const QString&,
|
---|
| 94 | const QByteArray&,
|
---|
| 95 | QVector<t_polarPoint*>*,
|
---|
| 96 | const QByteArray&,
|
---|
| 97 | QVector<t_polarPoint*>*,
|
---|
| 98 | const QByteArray&, double);
|
---|
| 99 |
|
---|
[4584] | 100 | void dspAvailPlot(const QString&, const QByteArray&);
|
---|
[3900] | 101 |
|
---|
[4300] | 102 | private slots:
|
---|
[4572] | 103 | void slotDspSkyPlot(const QString& fileName,
|
---|
| 104 | const QByteArray& title1,
|
---|
| 105 | QVector<t_polarPoint*>* data1,
|
---|
| 106 | const QByteArray& title2,
|
---|
| 107 | QVector<t_polarPoint*>* data2,
|
---|
| 108 | const QByteArray& scaleTitle, double maxValue);
|
---|
[3900] | 109 |
|
---|
[4584] | 110 | void slotDspAvailPlot(const QString& fileName, const QByteArray& title);
|
---|
[4572] | 111 |
|
---|
[3900] | 112 | public:
|
---|
| 113 | virtual void run();
|
---|
| 114 |
|
---|
| 115 | private:
|
---|
[4584] | 116 | class t_oneObs {
|
---|
[4266] | 117 | public:
|
---|
[4584] | 118 | t_oneObs(int GPSWeek, double GPSWeeks) {
|
---|
[4355] | 119 | _GPSWeek = GPSWeek;
|
---|
| 120 | _GPSWeeks = GPSWeeks;
|
---|
[4571] | 121 | _hasL1 = false;
|
---|
| 122 | _hasL2 = false;
|
---|
[4607] | 123 | _slipL1 = false;
|
---|
| 124 | _slipL2 = false;
|
---|
[4355] | 125 | _MP1 = 0.0;
|
---|
| 126 | _MP2 = 0.0;
|
---|
[4558] | 127 | _SNR1 = 0.0;
|
---|
| 128 | _SNR2 = 0.0;
|
---|
[5140] | 129 | _slotSet = false;
|
---|
[4355] | 130 | }
|
---|
| 131 | int _GPSWeek;
|
---|
| 132 | double _GPSWeeks;
|
---|
[4571] | 133 | bool _hasL1;
|
---|
| 134 | bool _hasL2;
|
---|
[4607] | 135 | bool _slipL1;
|
---|
| 136 | bool _slipL2;
|
---|
[4355] | 137 | double _MP1;
|
---|
| 138 | double _MP2;
|
---|
[4558] | 139 | double _SNR1;
|
---|
| 140 | double _SNR2;
|
---|
[5140] | 141 | bool _slotSet;
|
---|
[4266] | 142 | };
|
---|
| 143 |
|
---|
[4584] | 144 | class t_allObs {
|
---|
[4263] | 145 | public:
|
---|
[4584] | 146 | t_allObs() {}
|
---|
| 147 | ~t_allObs() {
|
---|
| 148 | for (int ii = 0; ii < _oneObsVec.size(); ii++) {
|
---|
| 149 | delete _oneObsVec[ii];
|
---|
[4338] | 150 | }
|
---|
[4263] | 151 | }
|
---|
[6137] | 152 | t_irc addObs(const t_satObs& obs, int slotNum);
|
---|
[4584] | 153 | QVector<t_oneObs*> _oneObsVec;
|
---|
[4263] | 154 | };
|
---|
| 155 |
|
---|
[4260] | 156 | void analyzeFile(t_rnxObsFile* obsFile);
|
---|
[4679] | 157 | void preparePlotData(const QString& prn, const ColumnVector& xyzSta,
|
---|
[4584] | 158 | double obsInterval,
|
---|
[4572] | 159 | QVector<t_polarPoint*>* dataMP1,
|
---|
| 160 | QVector<t_polarPoint*>* dataMP2,
|
---|
| 161 | QVector<t_polarPoint*>* dataSNR1,
|
---|
[4675] | 162 | QVector<t_polarPoint*>* dataSNR2);
|
---|
[4679] | 163 | void prepareObsStat(unsigned iEpo, double obsInterval,
|
---|
| 164 | const ColumnVector& xyzSta);
|
---|
| 165 | double cmpDOP(const ColumnVector& xyzSta) const;
|
---|
[4696] | 166 | void printReport(QVector<t_polarPoint*>* dataMP1,
|
---|
| 167 | QVector<t_polarPoint*>* dataMP2,
|
---|
| 168 | QVector<t_polarPoint*>* dataSNR1,
|
---|
| 169 | QVector<t_polarPoint*>* dataSNR2);
|
---|
[4254] | 170 |
|
---|
[4584] | 171 | QString _logFileName;
|
---|
| 172 | QFile* _logFile;
|
---|
| 173 | QTextStream* _log;
|
---|
| 174 | QStringList _obsFileNames;
|
---|
| 175 | QVector<t_rnxObsFile*> _rnxObsFiles;
|
---|
| 176 | QStringList _navFileNames;
|
---|
| 177 | QVector<t_eph*> _ephs;
|
---|
| 178 | t_rnxObsFile::t_rnxEpo* _currEpo;
|
---|
| 179 | QMap<QString, t_allObs> _allObsMap;
|
---|
| 180 | QMap<QString, t_availData> _availDataMap;
|
---|
[4672] | 181 | t_obsStat _obsStat;
|
---|
[4704] | 182 | QMutex _mutex;
|
---|
[3900] | 183 | };
|
---|
| 184 |
|
---|
| 185 | #endif
|
---|