source: ntrip/trunk/BNC/src/rinex/reqcanalyze.h@ 4687

Last change on this file since 4687 was 4687, checked in by mervart, 12 years ago
File size: 4.7 KB
Line 
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>
29#include "rnxobsfile.h"
30#include "rnxnavfile.h"
31#include "RTCM/GPSDecoder.h"
32#include "RTCM3/ephemeris.h"
33
34class t_polarPoint;
35
36class t_availData {
37 public:
38 QVector<double> _L1ok;
39 QVector<double> _L2ok;
40 QVector<double> _L1slip;
41 QVector<double> _L2slip;
42 QVector<double> _L1gap;
43 QVector<double> _L2gap;
44 QVector<double> _eleDeg;
45 QVector<double> _eleTim;
46};
47
48class t_prnStat {
49 public:
50 t_prnStat() {
51 _numObs = 0;
52 _numSlips = 0;
53 _numGaps = 0;
54 }
55 int _numObs;
56 int _numSlips;
57 int _numGaps;
58};
59
60class t_obsStat {
61 public:
62 void reset() {
63 _mjdX24.clear();
64 _numSat.clear();
65 _PDOP.clear();
66 _prnStat.clear();
67 }
68 QVector<double> _mjdX24;
69 QVector<double> _numSat;
70 QVector<double> _PDOP;
71 bncTime _startTime;
72 bncTime _endTime;
73 QString _antennaNumber;
74 QString _antennaName;
75 QString _markerName;
76 QString _markerNumber;
77 QString _receiverNumber;
78 QString _receiverType;
79 QString _receiverVersion;
80 QMap<QString, t_prnStat> _prnStat;
81};
82
83class t_reqcAnalyze : public QThread {
84Q_OBJECT
85
86 public:
87 t_reqcAnalyze(QObject* parent);
88
89 protected:
90 ~t_reqcAnalyze();
91
92 signals:
93 void finished();
94 void dspSkyPlot(const QString&,
95 const QByteArray&,
96 QVector<t_polarPoint*>*,
97 const QByteArray&,
98 QVector<t_polarPoint*>*,
99 const QByteArray&, double);
100
101 void dspAvailPlot(const QString&, const QByteArray&);
102
103 private slots:
104 void slotDspSkyPlot(const QString& fileName,
105 const QByteArray& title1,
106 QVector<t_polarPoint*>* data1,
107 const QByteArray& title2,
108 QVector<t_polarPoint*>* data2,
109 const QByteArray& scaleTitle, double maxValue);
110
111 void slotDspAvailPlot(const QString& fileName, const QByteArray& title);
112
113 public:
114 virtual void run();
115
116 private:
117 class t_oneObs {
118 public:
119 t_oneObs(int GPSWeek, double GPSWeeks) {
120 _GPSWeek = GPSWeek;
121 _GPSWeeks = GPSWeeks;
122 _hasL1 = false;
123 _hasL2 = false;
124 _slipL1 = false;
125 _slipL2 = false;
126 _MP1 = 0.0;
127 _MP2 = 0.0;
128 _SNR1 = 0.0;
129 _SNR2 = 0.0;
130 }
131 int _GPSWeek;
132 double _GPSWeeks;
133 bool _hasL1;
134 bool _hasL2;
135 bool _slipL1;
136 bool _slipL2;
137 double _MP1;
138 double _MP2;
139 double _SNR1;
140 double _SNR2;
141 };
142
143 class t_allObs {
144 public:
145 t_allObs() {}
146 ~t_allObs() {
147 for (int ii = 0; ii < _oneObsVec.size(); ii++) {
148 delete _oneObsVec[ii];
149 }
150 }
151 void addObs(const t_obs& obs);
152 QVector<t_oneObs*> _oneObsVec;
153 };
154
155 void analyzeFile(t_rnxObsFile* obsFile);
156 void preparePlotData(const QString& prn, const ColumnVector& xyzSta,
157 double obsInterval,
158 QVector<t_polarPoint*>* dataMP1,
159 QVector<t_polarPoint*>* dataMP2,
160 QVector<t_polarPoint*>* dataSNR1,
161 QVector<t_polarPoint*>* dataSNR2);
162 void prepareObsStat(unsigned iEpo, double obsInterval,
163 const ColumnVector& xyzSta);
164 double cmpDOP(const ColumnVector& xyzSta) const;
165
166 QString _logFileName;
167 QFile* _logFile;
168 QTextStream* _log;
169 QStringList _obsFileNames;
170 QVector<t_rnxObsFile*> _rnxObsFiles;
171 QStringList _navFileNames;
172 QVector<t_eph*> _ephs;
173 t_rnxObsFile::t_rnxEpo* _currEpo;
174 QMap<QString, t_allObs> _allObsMap;
175 QMap<QString, t_availData> _availDataMap;
176 t_obsStat _obsStat;
177};
178
179#endif
Note: See TracBrowser for help on using the repository browser.