[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"
|
---|
[6137] | 38 | #include "satObs.h"
|
---|
[3716] | 39 |
|
---|
[4480] | 40 | class t_rnxObsHeader {
|
---|
[6119] | 41 |
|
---|
| 42 | friend class t_rnxObsFile;
|
---|
| 43 |
|
---|
[4480] | 44 | public:
|
---|
[6119] | 45 | static const double defaultRnxObsVersion2 = 2.11;
|
---|
[6815] | 46 | static const double defaultRnxObsVersion3 = 3.03;
|
---|
[6119] | 47 | static const QString defaultSystems;
|
---|
[5375] | 48 |
|
---|
[4480] | 49 | t_rnxObsHeader();
|
---|
| 50 | ~t_rnxObsHeader();
|
---|
| 51 |
|
---|
[6225] | 52 | double version() const {return _version;}
|
---|
[6119] | 53 | t_irc read(QTextStream* stream, int maxLines = 0);
|
---|
[6222] | 54 | void setDefault(const QString& markerName, int version);
|
---|
[6841] | 55 | void set(const t_rnxObsHeader& header, int version,
|
---|
| 56 | const QStringList* useObsTypes = 0, const QStringList* phaseShifts = 0,
|
---|
| 57 | const QStringList* gloBiases = 0, const QStringList* gloSlots = 0);
|
---|
[6119] | 58 | int numSys() const;
|
---|
[6130] | 59 | char system(int iSys) const;
|
---|
[6119] | 60 | int nTypes(char sys) const;
|
---|
[6841] | 61 | int numGloBiases() const;
|
---|
| 62 | int numGloSlots() const;
|
---|
[6126] | 63 | QString obsType(char sys, int index, double version = 0.0) const;
|
---|
[6841] | 64 | QStringList phaseShifts() const;
|
---|
| 65 | QStringList gloBiases() const;
|
---|
| 66 | QStringList gloSlots() const;
|
---|
[6119] | 67 | void write(QTextStream* stream, const QMap<QString, QString>* txtMap = 0) const;
|
---|
[6225] | 68 | bncTime startTime() const {return _startTime;}
|
---|
| 69 | void setStartTime(const bncTime& startTime) {_startTime = startTime;}
|
---|
[4480] | 70 |
|
---|
[6119] | 71 | private:
|
---|
[6225] | 72 | QStringList obsTypesStrings() const;
|
---|
[6719] | 73 | QString _usedSystems;
|
---|
| 74 | double _version;
|
---|
| 75 | double _interval;
|
---|
| 76 | QString _antennaNumber;
|
---|
| 77 | QString _antennaName;
|
---|
| 78 | QString _markerName;
|
---|
| 79 | QString _markerNumber;
|
---|
| 80 | QString _observer;
|
---|
| 81 | QString _agency;
|
---|
| 82 | QString _receiverNumber;
|
---|
| 83 | QString _receiverType;
|
---|
| 84 | QString _receiverVersion;
|
---|
| 85 | QStringList _comments;
|
---|
| 86 | ColumnVector _antNEU;
|
---|
| 87 | ColumnVector _antXYZ;
|
---|
| 88 | ColumnVector _antBSG;
|
---|
| 89 | ColumnVector _xyz;
|
---|
[6230] | 90 | QMap<char, QStringList> _obsTypes;
|
---|
[6719] | 91 | QMap<t_prn, int> _gloSlots;
|
---|
[6841] | 92 | QMap<QString, double> _gloBiases;
|
---|
[6230] | 93 | int _wlFactorsL1[t_prn::MAXPRN_GPS+1];
|
---|
| 94 | int _wlFactorsL2[t_prn::MAXPRN_GPS+1];
|
---|
| 95 | bncTime _startTime;
|
---|
[6815] | 96 | QMap<QString, QPair<double, QStringList> > _phaseShifts;
|
---|
[4480] | 97 | };
|
---|
| 98 |
|
---|
[3716] | 99 | class t_rnxObsFile {
|
---|
| 100 | public:
|
---|
| 101 |
|
---|
[3840] | 102 | static bool earlierStartTime(const t_rnxObsFile* file1, const t_rnxObsFile* file2) {
|
---|
| 103 | return file1->startTime() < file2->startTime();
|
---|
| 104 | }
|
---|
| 105 |
|
---|
[6119] | 106 | class t_rnxObs {
|
---|
| 107 | public:
|
---|
[6226] | 108 | t_rnxObs() {
|
---|
| 109 | value = 0.0; lli = 0; snr = 0;
|
---|
| 110 | }
|
---|
[6119] | 111 | double value;
|
---|
| 112 | int lli;
|
---|
| 113 | int snr;
|
---|
| 114 | };
|
---|
| 115 |
|
---|
[3716] | 116 | class t_rnxSat {
|
---|
| 117 | public:
|
---|
[6119] | 118 | t_prn prn;
|
---|
| 119 | QMap<QString, t_rnxObs> obs;
|
---|
[3716] | 120 | };
|
---|
| 121 |
|
---|
| 122 | class t_rnxEpo {
|
---|
| 123 | public:
|
---|
[6126] | 124 | t_rnxEpo() {clear();}
|
---|
[3716] | 125 | void clear() {
|
---|
[6119] | 126 | tt.reset();
|
---|
[3716] | 127 | rnxSat.clear();
|
---|
| 128 | }
|
---|
| 129 | bncTime tt;
|
---|
| 130 | std::vector<t_rnxSat> rnxSat;
|
---|
| 131 | };
|
---|
| 132 |
|
---|
[3843] | 133 | enum e_inpOut {input, output};
|
---|
| 134 |
|
---|
| 135 | t_rnxObsFile(const QString& fileName, e_inpOut inpOut);
|
---|
[3716] | 136 | ~t_rnxObsFile();
|
---|
| 137 |
|
---|
[6225] | 138 | double version() const {return _header._version;}
|
---|
[6119] | 139 | double interval() const {return _header._interval;}
|
---|
| 140 | int numSys() const {return _header.numSys();}
|
---|
[6130] | 141 | char system(int iSys) const {return _header.system(iSys);}
|
---|
[6119] | 142 | int nTypes(char sys) const {return _header.nTypes(sys);}
|
---|
[6841] | 143 | int numGloBiases() const {return _header.numGloBiases();}
|
---|
| 144 | int numGloSlots() const {return _header.numGloSlots();}
|
---|
[6119] | 145 | const QString& fileName() const {return _fileName;}
|
---|
[6126] | 146 | QString obsType(char sys, int index, double version = 0.0) const {
|
---|
| 147 | return _header.obsType(sys, index, version);
|
---|
| 148 | }
|
---|
[6841] | 149 | QStringList phaseShifts() const {return _header.phaseShifts();}
|
---|
| 150 | QStringList gloBiases() const {return _header.gloBiases();}
|
---|
| 151 | QStringList gloSlots() const {return _header.gloSlots();}
|
---|
[6119] | 152 | const QString& antennaName() const {return _header._antennaName;}
|
---|
[6795] | 153 | const QString& antennaNumber() const {return _header._antennaNumber;}
|
---|
[6119] | 154 | const QString& markerName() const {return _header._markerName;}
|
---|
[6302] | 155 | const QString& markerNumber() const {return _header._markerNumber;}
|
---|
[6119] | 156 | const QString& receiverType() const {return _header._receiverType;}
|
---|
[6795] | 157 | const QString& receiverNumber() const {return _header._receiverNumber;}
|
---|
[3984] | 158 |
|
---|
[4112] | 159 | void setInterval(double interval) {_header._interval = interval;}
|
---|
[3984] | 160 | void setAntennaName(const QString& antennaName) {_header._antennaName = antennaName;}
|
---|
[6795] | 161 | void setAntennaNumber(const QString& antennaNumber) {_header._antennaNumber = antennaNumber;}
|
---|
| 162 | void setAntennaN(double antN) {_header._antNEU(1) = antN;}
|
---|
| 163 | void setAntennaE(double antE) {_header._antNEU(2) = antE;}
|
---|
| 164 | void setAntennaU(double antU) {_header._antNEU(3) = antU;}
|
---|
| 165 |
|
---|
[3984] | 166 | void setMarkerName(const QString& markerName) {_header._markerName = markerName;}
|
---|
| 167 | void setReceiverType(const QString& receiverType) {_header._receiverType = receiverType;}
|
---|
[6795] | 168 | void setReceiverNumber(const QString& receiverNumber) {_header._receiverNumber = receiverNumber;}
|
---|
[3984] | 169 |
|
---|
[3716] | 170 | const ColumnVector& xyz() const {return _header._xyz;}
|
---|
| 171 | const ColumnVector& antNEU() const {return _header._antNEU;}
|
---|
| 172 | const ColumnVector& antXYZ() const {return _header._antXYZ;}
|
---|
| 173 | const ColumnVector& antBSG() const {return _header._antBSG;}
|
---|
[3991] | 174 |
|
---|
[3838] | 175 | const bncTime& startTime() const {return _header._startTime;}
|
---|
[3991] | 176 | void setStartTime(const bncTime& startTime) {_header._startTime = startTime;}
|
---|
| 177 |
|
---|
[3994] | 178 | t_rnxEpo* nextEpoch();
|
---|
[6222] | 179 |
|
---|
[3716] | 180 | int wlFactorL1(unsigned iPrn) {
|
---|
[5742] | 181 | return iPrn <= t_prn::MAXPRN_GPS ? _header._wlFactorsL1[iPrn] : 1;
|
---|
[3716] | 182 | }
|
---|
| 183 | int wlFactorL2(unsigned iPrn) {
|
---|
[5742] | 184 | return iPrn <= t_prn::MAXPRN_GPS ? _header._wlFactorsL2[iPrn] : 1;
|
---|
[3716] | 185 | }
|
---|
| 186 |
|
---|
[3844] | 187 | const t_rnxObsHeader& header() const {return _header;}
|
---|
[6222] | 188 |
|
---|
[6841] | 189 | void setHeader(const t_rnxObsHeader& header, int version,
|
---|
| 190 | const QStringList* useObsTypes = 0, const QStringList* phaseShifts = 0,
|
---|
| 191 | const QStringList* gloBiases = 0, const QStringList* gloSlots = 0) {
|
---|
| 192 | _header.set(header, version, useObsTypes, phaseShifts, gloBiases, gloSlots);
|
---|
[6222] | 193 | }
|
---|
| 194 |
|
---|
[3845] | 195 | void writeEpoch(const t_rnxEpo* epo);
|
---|
[3844] | 196 |
|
---|
[4481] | 197 | QTextStream* stream() {return _stream;}
|
---|
| 198 |
|
---|
[6222] | 199 | static void setObsFromRnx(const t_rnxObsFile* rnxObsFile, const t_rnxObsFile::t_rnxEpo* epo,
|
---|
| 200 | const t_rnxObsFile::t_rnxSat& rnxSat, t_satObs& obs);
|
---|
[5883] | 201 |
|
---|
[6192] | 202 | static QString type2to3(char sys, const QString& typeV2);
|
---|
| 203 | static QString type3to2(char sys, const QString& typeV3);
|
---|
[5932] | 204 |
|
---|
[6225] | 205 | static void writeEpoch(QTextStream* stream, const t_rnxObsHeader& header, const t_rnxEpo* epo) {
|
---|
| 206 | if (header.version() >= 3.0) {
|
---|
| 207 | writeEpochV3(stream, header, epo);
|
---|
| 208 | }
|
---|
| 209 | else {
|
---|
| 210 | writeEpochV2(stream, header, epo);
|
---|
| 211 | }
|
---|
| 212 | }
|
---|
| 213 |
|
---|
| 214 | private:
|
---|
[6222] | 215 | static void writeEpochV2(QTextStream* stream, const t_rnxObsHeader& header, const t_rnxEpo* epo);
|
---|
| 216 | static void writeEpochV3(QTextStream* stream, const t_rnxObsHeader& header, const t_rnxEpo* epo);
|
---|
[6241] | 217 | static QString signalPriorities(char sys);
|
---|
[4480] | 218 | t_rnxObsFile() {};
|
---|
| 219 | void openRead(const QString& fileName);
|
---|
| 220 | void openWrite(const QString& fileName);
|
---|
| 221 | void close();
|
---|
[3994] | 222 | t_rnxEpo* nextEpochV2();
|
---|
| 223 | t_rnxEpo* nextEpochV3();
|
---|
[4540] | 224 | void handleEpochFlag(int flag, const QString& line, bool& headerReRead);
|
---|
[3960] | 225 |
|
---|
[3843] | 226 | e_inpOut _inpOut;
|
---|
[3718] | 227 | QFile* _file;
|
---|
[3717] | 228 | QString _fileName;
|
---|
[3718] | 229 | QTextStream* _stream;
|
---|
[3716] | 230 | t_rnxObsHeader _header;
|
---|
| 231 | t_rnxEpo _currEpo;
|
---|
| 232 | bool _flgPowerFail;
|
---|
| 233 | };
|
---|
| 234 |
|
---|
| 235 | #endif
|
---|