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

Last change on this file since 6296 was 6296, checked in by mervart, 9 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 "ephemeris.h"
32#include "satObs.h"
33
34class t_polarPoint;
35
36class t_plotData {
37 public:
38 QVector<double> _mjdX24;
39 QVector<double> _numSat;
40 QVector<double> _PDOP;
41 QVector<double> _L1ok;
42 QVector<double> _L2ok;
43 QVector<double> _L1slip;
44 QVector<double> _L2slip;
45 QVector<double> _L1gap;
46 QVector<double> _L2gap;
47 QVector<double> _eleDeg;
48};
49
50class t_reqcAnalyze : public QThread {
51Q_OBJECT
52
53 public:
54 t_reqcAnalyze(QObject* parent);
55 virtual void run();
56
57 protected:
58 ~t_reqcAnalyze();
59
60 signals:
61 void finished();
62 void dspSkyPlot(const QString&, const QByteArray&, QVector<t_polarPoint*>*,
63 const QByteArray&, QVector<t_polarPoint*>*, const QByteArray&, double);
64 void dspAvailPlot(const QString&, const QByteArray&);
65
66 private:
67
68 class t_qcFrq {
69 public:
70 t_qcFrq() {
71 _phaseValid = false;
72 _codeValid = false;
73 _slip = false;
74 _gap = false;
75 _setMP = false;
76 _rawMP = 0.0;
77 _stdMP = 0.0;
78 _SNR = 0.0;
79 }
80 QString _rnxType2ch;
81 bool _phaseValid;
82 bool _codeValid;
83 bool _slip;
84 bool _gap;
85 bool _setMP;
86 double _rawMP;
87 double _stdMP;
88 double _SNR;
89 };
90
91 class t_qcSat {
92 public:
93 t_qcSat() {
94 _slotSet = false;
95 _eleSet = false;
96 _slotNum = 0;
97 _eleDeg = 0.0;
98 _azDeg = 0.0;
99 }
100 bool _slotSet;
101 bool _eleSet;
102 int _slotNum;
103 double _eleDeg;
104 double _azDeg;
105 QVector<t_qcFrq> _qcFrq;
106 };
107
108 class t_qcEpo {
109 public:
110 bncTime _epoTime;
111 double _PDOP;
112 QMap<t_prn, t_qcSat> _qcSat;
113 };
114
115 class t_qcFrqSum {
116 public:
117 t_qcFrqSum() {
118 _numObs = 0;
119 _numSlipsFlagged = 0;
120 _numSlipsFound = 0;
121 _numGaps = 0;
122 }
123 int _numObs;
124 int _numSlipsFlagged;
125 int _numSlipsFound;
126 int _numGaps;
127 };
128
129 class t_qcSatSum {
130 public:
131 QMap<QString, t_qcFrqSum> _qcFrqSum;
132 };
133
134 class t_qcFile {
135 public:
136 t_qcFile() {clear();}
137 void clear() {_qcSatSum.clear(); _qcEpo.clear();}
138 bncTime _startTime;
139 bncTime _endTime;
140 QString _antennaName;
141 QString _markerName;
142 QString _receiverType;
143 double _interval;
144 QMap<t_prn, t_qcSatSum> _qcSatSum;
145 QVector<t_qcEpo> _qcEpo;
146 };
147
148 private slots:
149 void slotDspSkyPlot(const QString& fileName, const QByteArray& title1,
150 QVector<t_polarPoint*>* data1, const QByteArray& title2,
151 QVector<t_polarPoint*>* data2, const QByteArray& scaleTitle, double maxValue);
152
153 void slotDspAvailPlot(const QString& fileName, const QByteArray& title);
154
155 private:
156 void analyzeFile(t_rnxObsFile* obsFile);
157
158 void updateQcSat(const t_qcSat& qcSat, t_qcSatSum& qcSatSum);
159
160 void setQcObs(const bncTime& epoTime, const ColumnVector& xyzSta,
161 const t_satObs& satObs, QMap<QString, bncTime>& lastObsTime, t_qcSat& qcSat);
162
163 void analyzeMultipath();
164
165 void preparePlotData(const t_rnxObsFile* obsFile);
166
167 double cmpDOP(const ColumnVector& xyzSta) const;
168
169 void printReport(const t_rnxObsFile* obsFile);
170
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 t_qcFile _qcFile;
180};
181
182#endif
Note: See TracBrowser for help on using the repository browser.