source: ntrip/trunk/BNC/src/rinex/rnxobsfile.h@ 6120

Last change on this file since 6120 was 6120, checked in by mervart, 10 years ago
File size: 6.2 KB
RevLine 
[3716]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 RNXOBSFILE_H
26#define RNXOBSFILE_H
27
[3718]28#include <QtCore>
[3717]29
[3716]30#include <fstream>
31#include <vector>
32#include <map>
33
34#include "newmat.h"
35#include "bncconst.h"
36#include "bnctime.h"
[5742]37#include "t_prn.h"
[5883]38#include "GPSDecoder.h"
[3716]39
[4480]40class t_rnxObsHeader {
[6119]41
42 friend class t_rnxObsFile;
[6120]43 friend class bncRinex;
[6119]44
[4480]45 public:
[6119]46 static const double defaultRnxObsVersion2 = 2.11;
47 static const double defaultRnxObsVersion3 = 3.02;
48 static const QString defaultSystems;
[5375]49
[4480]50 t_rnxObsHeader();
51 ~t_rnxObsHeader();
52
[6119]53 t_irc read(QTextStream* stream, int maxLines = 0);
54 int numSys() const;
55 int nTypes(char sys) const;
56 QString obsType(char sys, int index) const;
57 QStringList obsTypesStrings() const;
58 void write(QTextStream* stream, const QMap<QString, QString>* txtMap = 0) const;
[4480]59
[6119]60 private:
[4480]61 float _version;
62 double _interval;
63 QString _antennaNumber;
64 QString _antennaName;
65 QString _markerName;
66 QString _markerNumber;
67 QString _observer;
68 QString _agency;
69 QString _receiverNumber;
70 QString _receiverType;
71 QString _receiverVersion;
[4493]72 QStringList _comments;
[4480]73 ColumnVector _antNEU;
74 ColumnVector _antXYZ;
75 ColumnVector _antBSG;
76 ColumnVector _xyz;
[6119]77 QMap<char, QVector<QString> > _obsTypes;
[5742]78 int _wlFactorsL1[t_prn::MAXPRN_GPS+1];
79 int _wlFactorsL2[t_prn::MAXPRN_GPS+1];
[4480]80 bncTime _startTime;
81};
82
[3716]83class t_rnxObsFile {
84 public:
85
[3840]86 static bool earlierStartTime(const t_rnxObsFile* file1, const t_rnxObsFile* file2) {
87 return file1->startTime() < file2->startTime();
88 }
89
[6119]90 class t_rnxObs {
91 public:
92 double value;
93 int lli;
94 int snr;
95 };
96
[3716]97 class t_rnxSat {
98 public:
[6119]99 t_prn prn;
100 QMap<QString, t_rnxObs> obs;
[3716]101 };
102
103 class t_rnxEpo {
104 public:
105 void clear() {
[6119]106 tt.reset();
[3716]107 rnxSat.clear();
108 }
109 bncTime tt;
110 std::vector<t_rnxSat> rnxSat;
111 };
112
[3843]113 enum e_inpOut {input, output};
114
115 t_rnxObsFile(const QString& fileName, e_inpOut inpOut);
[3716]116 ~t_rnxObsFile();
117
[6119]118 float version() const {return _header._version;}
119 double interval() const {return _header._interval;}
120 int numSys() const {return _header.numSys();}
121 int nTypes(char sys) const {return _header.nTypes(sys);}
122 const QString& fileName() const {return _fileName;}
123 QString obsType(char sys, int index) const {return _header.obsType(sys, index);}
124 const QString& antennaName() const {return _header._antennaName;}
125 const QString& markerName() const {return _header._markerName;}
126 const QString& receiverType() const {return _header._receiverType;}
[3984]127
[4112]128 void setInterval(double interval) {_header._interval = interval;}
[3984]129 void setAntennaName(const QString& antennaName) {_header._antennaName = antennaName;}
130 void setMarkerName(const QString& markerName) {_header._markerName = markerName;}
131 void setReceiverType(const QString& receiverType) {_header._receiverType = receiverType;}
132
[3716]133 const ColumnVector& xyz() const {return _header._xyz;}
134 const ColumnVector& antNEU() const {return _header._antNEU;}
135 const ColumnVector& antXYZ() const {return _header._antXYZ;}
136 const ColumnVector& antBSG() const {return _header._antBSG;}
[3991]137
[3838]138 const bncTime& startTime() const {return _header._startTime;}
[3991]139 void setStartTime(const bncTime& startTime) {_header._startTime = startTime;}
140
[3994]141 t_rnxEpo* nextEpoch();
[3716]142 int wlFactorL1(unsigned iPrn) {
[5742]143 return iPrn <= t_prn::MAXPRN_GPS ? _header._wlFactorsL1[iPrn] : 1;
[3716]144 }
145 int wlFactorL2(unsigned iPrn) {
[5742]146 return iPrn <= t_prn::MAXPRN_GPS ? _header._wlFactorsL2[iPrn] : 1;
[3716]147 }
148
[3844]149 const t_rnxObsHeader& header() const {return _header;}
[6118]150 void setHeader(const t_rnxObsHeader& header, double version, const QStringList& useObsTypes);
[4053]151 void checkNewHeader(const t_rnxObsHeader& header);
[3845]152 void writeEpoch(const t_rnxEpo* epo);
[3844]153
[4481]154 QTextStream* stream() {return _stream;}
155
[5883]156 static void setObsFromRnx(const t_rnxObsFile* rnxObsFile,
157 const t_rnxObsFile::t_rnxEpo* epo,
158 const t_rnxObsFile::t_rnxSat& rnxSat,
159 t_obs& obs);
160
[5932]161 static QString type2to3(char sys, const QString& typeV2);
162 static QString type3to2(const QString& typeV3);
163
[3844]164 private:
[4480]165 t_rnxObsFile() {};
166 void openRead(const QString& fileName);
167 void openWrite(const QString& fileName);
168 void close();
[3866]169 void writeEpochV2(const t_rnxEpo* epo);
170 void writeEpochV3(const t_rnxEpo* epo);
[3994]171 t_rnxEpo* nextEpochV2();
172 t_rnxEpo* nextEpochV3();
[4540]173 void handleEpochFlag(int flag, const QString& line, bool& headerReRead);
[6118]174 bool useType(const QStringList& useObsTypes, const QString& type);
[3960]175
[6118]176 QMap<int, int> _indexMap2to2;
177 QMap<char, QMap<int, int> > _indexMap3to3;
[4053]178 QMap<char, QMap<int, int> > _indexMap2to3;
179 QMap<char, QMap<int, int> > _indexMap3to2;
[3960]180
[3843]181 e_inpOut _inpOut;
[3718]182 QFile* _file;
[3717]183 QString _fileName;
[3718]184 QTextStream* _stream;
[3716]185 t_rnxObsHeader _header;
186 t_rnxEpo _currEpo;
187 bool _flgPowerFail;
188};
189
190#endif
Note: See TracBrowser for help on using the repository browser.