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

Last change on this file since 4596 was 4591, checked in by mervart, 13 years ago
File size: 3.7 KB
RevLine 
[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"
[4263]31#include "RTCM/GPSDecoder.h"
[4254]32#include "RTCM3/ephemeris.h"
[3900]33
[4338]34class t_polarPoint;
35
[4584]36class 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;
[4584]44};
45
[3900]46class t_reqcAnalyze : public QThread {
47Q_OBJECT
48
49 public:
50 t_reqcAnalyze(QObject* parent);
51
52 protected:
53 ~t_reqcAnalyze();
54
55 signals:
56 void finished();
[4572]57 void dspSkyPlot(const QString&,
58 const QByteArray&,
59 QVector<t_polarPoint*>*,
60 const QByteArray&,
61 QVector<t_polarPoint*>*,
62 const QByteArray&, double);
63
[4584]64 void dspAvailPlot(const QString&, const QByteArray&);
[3900]65
[4300]66 private slots:
[4572]67 void slotDspSkyPlot(const QString& fileName,
68 const QByteArray& title1,
69 QVector<t_polarPoint*>* data1,
70 const QByteArray& title2,
71 QVector<t_polarPoint*>* data2,
72 const QByteArray& scaleTitle, double maxValue);
[3900]73
[4584]74 void slotDspAvailPlot(const QString& fileName, const QByteArray& title);
[4572]75
[3900]76 public:
77 virtual void run();
78
79 private:
[4584]80 class t_oneObs {
[4266]81 public:
[4584]82 t_oneObs(int GPSWeek, double GPSWeeks) {
[4355]83 _GPSWeek = GPSWeek;
84 _GPSWeeks = GPSWeeks;
[4571]85 _hasL1 = false;
86 _hasL2 = false;
[4355]87 _MP1 = 0.0;
88 _MP2 = 0.0;
[4558]89 _SNR1 = 0.0;
90 _SNR2 = 0.0;
[4355]91 }
92 int _GPSWeek;
93 double _GPSWeeks;
[4571]94 bool _hasL1;
95 bool _hasL2;
[4355]96 double _MP1;
97 double _MP2;
[4558]98 double _SNR1;
99 double _SNR2;
[4266]100 };
101
[4584]102 class t_allObs {
[4263]103 public:
[4584]104 t_allObs() {}
105 ~t_allObs() {
106 for (int ii = 0; ii < _oneObsVec.size(); ii++) {
107 delete _oneObsVec[ii];
[4338]108 }
[4263]109 }
[4355]110 void addObs(const t_obs& obs);
[4584]111 QVector<t_oneObs*> _oneObsVec;
[4263]112 };
113
[4260]114 void analyzeFile(t_rnxObsFile* obsFile);
[4584]115 void preparePlotData(const QString& prn, const ColumnVector& xyz,
116 double obsInterval,
[4572]117 QVector<t_polarPoint*>* dataMP1,
118 QVector<t_polarPoint*>* dataMP2,
119 QVector<t_polarPoint*>* dataSNR1,
[4584]120 QVector<t_polarPoint*>* dataSNR2);
[4254]121
[4584]122 QString _logFileName;
123 QFile* _logFile;
124 QTextStream* _log;
125 QStringList _obsFileNames;
126 QVector<t_rnxObsFile*> _rnxObsFiles;
127 QStringList _navFileNames;
128 QVector<t_eph*> _ephs;
129 t_rnxObsFile::t_rnxEpo* _currEpo;
130 QMap<QString, t_allObs> _allObsMap;
131 QMap<QString, t_availData> _availDataMap;
[3900]132};
133
134#endif
Note: See TracBrowser for help on using the repository browser.