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

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

Analyze more than two signals

File size: 5.5 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 "ephemeris.h"
32#include "satObs.h"
33#include "polarplot.h"
34
35class t_plotData {
36 public:
37 struct t_hlpStatus {
38 QVector<double> _ok;
39 QVector<double> _slip;
40 QVector<double> _gap;
41 };
42 QVector<double> _mjdX24;
43 QVector<double> _numSat;
44 QVector<double> _PDOP;
45 QVector<double> _eleDeg;
46 QMap<char, t_hlpStatus> _status;
47};
48
49class t_reqcAnalyze : public QThread {
50Q_OBJECT
51
52 public:
53 t_reqcAnalyze(QObject* parent);
54 virtual void run();
55
56 protected:
57 ~t_reqcAnalyze();
58
59 class t_skyPlotData {
60 public:
61 t_skyPlotData() {
62 _data = new QVector<t_polarPoint*>;
63 }
64 ~t_skyPlotData() {}
65 void clear() {
66 for (int ii = 0; ii < _data->size(); ii++) {
67 delete _data->at(ii);
68 }
69 }
70 QString _title;
71 QVector<t_polarPoint*>* _data;
72 };
73
74 signals:
75 void finished();
76 void dspSkyPlot(const QString&, QVector<t_skyPlotData> skyPlotData,
77 const QByteArray&, double);
78 void dspAvailPlot(const QString&, const QByteArray&);
79
80 private:
81
82 class t_qcFrq {
83 public:
84 t_qcFrq() {
85 _phaseValid = false;
86 _codeValid = false;
87 _slip = false;
88 _gap = false;
89 _setMP = false;
90 _rawMP = 0.0;
91 _stdMP = 0.0;
92 _SNR = 0.0;
93 }
94 QString _rnxType2ch;
95 bool _phaseValid;
96 bool _codeValid;
97 bool _slip;
98 bool _gap;
99 bool _setMP;
100 double _rawMP;
101 double _stdMP;
102 double _SNR;
103 };
104
105 class t_qcSat {
106 public:
107 t_qcSat() {
108 _slotSet = false;
109 _eleSet = false;
110 _slotNum = 0;
111 _eleDeg = 0.0;
112 _azDeg = 0.0;
113 }
114 bool _slotSet;
115 bool _eleSet;
116 int _slotNum;
117 double _eleDeg;
118 double _azDeg;
119 QVector<t_qcFrq> _qcFrq;
120 };
121
122 class t_qcEpo {
123 public:
124 bncTime _epoTime;
125 double _PDOP;
126 QMap<t_prn, t_qcSat> _qcSat;
127 };
128
129 class t_qcFrqSum {
130 public:
131 t_qcFrqSum() {
132 _numObs = 0;
133 _numSlipsFlagged = 0;
134 _numSlipsFound = 0;
135 _numGaps = 0;
136 _numSNR = 0;
137 _sumSNR = 0.0;
138 _numMP = 0;
139 _sumMP = 0.0;
140 }
141 int _numObs;
142 int _numSlipsFlagged;
143 int _numSlipsFound;
144 int _numGaps;
145 int _numSNR;
146 double _sumSNR;
147 int _numMP;
148 double _sumMP;
149 };
150
151 class t_qcSatSum {
152 public:
153 QMap<QString, t_qcFrqSum> _qcFrqSum;
154 };
155
156 class t_qcFile {
157 public:
158 t_qcFile() {
159 clear();
160 _interval = 1.0;
161 }
162 void clear() {_qcSatSum.clear(); _qcEpo.clear();}
163 bncTime _startTime;
164 bncTime _endTime;
165 QString _antennaName;
166 QString _markerName;
167 QString _receiverType;
168 double _interval;
169 QMap<t_prn, t_qcSatSum> _qcSatSum;
170 QVector<t_qcEpo> _qcEpo;
171 };
172
173 private slots:
174 void slotDspSkyPlot(const QString& fileName, QVector<t_skyPlotData> skyPlotData,
175 const QByteArray& scaleTitle, double maxValue);
176
177 void slotDspAvailPlot(const QString& fileName, const QByteArray& title);
178
179 private:
180 void checkEphemerides();
181
182 void analyzePlotSignals();
183
184 void analyzeFile(t_rnxObsFile* obsFile);
185
186 void updateQcSat(const t_qcSat& qcSat, t_qcSatSum& qcSatSum);
187
188 void setQcObs(const bncTime& epoTime, const ColumnVector& xyzSta,
189 const t_satObs& satObs, QMap<QString, bncTime>& lastObsTime, t_qcSat& qcSat);
190
191 void setExpectedObs(const bncTime& startTime, const bncTime& endTime,
192 double interval, const ColumnVector& xyzSta);
193
194 void analyzeMultipath();
195
196 void preparePlotData(const t_rnxObsFile* obsFile);
197
198 double cmpDOP(const ColumnVector& xyzSta) const;
199
200 void printReport(const t_rnxObsFile* obsFile);
201
202 QString _logFileName;
203 QFile* _logFile;
204 QTextStream* _log;
205 QStringList _obsFileNames;
206 QVector<t_rnxObsFile*> _rnxObsFiles;
207 QStringList _navFileNames;
208 QString _reqcPlotSignals;
209 QMap<char, QVector<char> > _signalTypes;
210 QMap<t_prn, int> _numExpObs;
211 QVector<char> _navFileIncomplete;
212 QStringList _defaultSignalTypes;
213 QVector<t_eph*> _ephs;
214 t_rnxObsFile::t_rnxEpo* _currEpo;
215 t_qcFile _qcFile;
216};
217
218#endif
Note: See TracBrowser for help on using the repository browser.