source: ntrip/trunk/BNC/rinex/rnxobsfile.h@ 4041

Last change on this file since 4041 was 3994, checked in by mervart, 13 years ago
File size: 5.6 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"
37
38#define MAXPRN_GPS 32
39
40class t_rnxObsFile {
41 public:
42
[3840]43 static bool earlierStartTime(const t_rnxObsFile* file1, const t_rnxObsFile* file2) {
44 return file1->startTime() < file2->startTime();
45 }
46
[3716]47 class t_rnxSat {
48 public:
49 char satSys;
50 int satNum;
51 std::vector<double> obs;
52 std::vector<int> lli;
53 std::vector<int> snr;
54 };
55
56 class t_rnxEpo {
57 public:
58 void clear() {
59 rnxSat.clear();
60 }
61 bncTime tt;
62 std::vector<t_rnxSat> rnxSat;
63 };
64
[3843]65 enum e_inpOut {input, output};
66
67 t_rnxObsFile(const QString& fileName, e_inpOut inpOut);
[3716]68 ~t_rnxObsFile();
69
70 float version() const {return _header._version;}
71 double interval() const {return _header._interval;}
72 int nTypes(char sys) const {return _header.nTypes(sys);}
[3717]73 const QString& fileName() const {return _fileName;}
74 const QString& obsType(char sys, int index) const {return _header.obsType(sys, index);}
[3984]75
[3717]76 const QString& antennaName() const {return _header._antennaName;}
77 const QString& markerName() const {return _header._markerName;}
[3984]78 const QString& receiverType() const {return _header._receiverType;}
79
80 void setAntennaName(const QString& antennaName) {_header._antennaName = antennaName;}
81 void setMarkerName(const QString& markerName) {_header._markerName = markerName;}
82 void setReceiverType(const QString& receiverType) {_header._receiverType = receiverType;}
83
[3716]84 const ColumnVector& xyz() const {return _header._xyz;}
85 const ColumnVector& antNEU() const {return _header._antNEU;}
86 const ColumnVector& antXYZ() const {return _header._antXYZ;}
87 const ColumnVector& antBSG() const {return _header._antBSG;}
[3991]88
[3838]89 const bncTime& startTime() const {return _header._startTime;}
[3991]90 void setStartTime(const bncTime& startTime) {_header._startTime = startTime;}
91
[3994]92 t_rnxEpo* nextEpoch();
[3716]93 int wlFactorL1(unsigned iPrn) {
94 return iPrn <= MAXPRN_GPS ? _header._wlFactorsL1[iPrn] : 1;
95 }
96 int wlFactorL2(unsigned iPrn) {
97 return iPrn <= MAXPRN_GPS ? _header._wlFactorsL2[iPrn] : 1;
98 }
99
100 protected:
101 t_rnxObsFile() {};
[3843]102 void openRead(const QString& fileName);
[3845]103 void openWrite(const QString& fileName);
[3716]104 void close();
105
106 private:
107 class t_rnxObsHeader {
108 public:
109 t_rnxObsHeader();
110 ~t_rnxObsHeader();
111
[3718]112 t_irc read(QTextStream* stream, int maxLines = 0);
[3717]113 int nTypes(char sys) const;
114 const QString& obsType(char sys, int index) const;
[3716]115
[3717]116 static const QString _emptyStr;
117 float _version;
118 double _interval;
[3930]119 QString _antennaNumber;
[3717]120 QString _antennaName;
121 QString _markerName;
[3928]122 QString _markerNumber;
[3927]123 QString _observer;
124 QString _agency;
125 QString _receiverNumber;
126 QString _receiverType;
127 QString _receiverVersion;
[3717]128 ColumnVector _antNEU;
129 ColumnVector _antXYZ;
130 ColumnVector _antBSG;
131 ColumnVector _xyz;
132 std::vector<QString> _obsTypesV2;
133 std::map<char, std::vector<QString> > _obsTypesV3;
134 int _wlFactorsL1[MAXPRN_GPS+1];
135 int _wlFactorsL2[MAXPRN_GPS+1];
[3837]136 bncTime _startTime;
[3716]137 };
138
[3844]139 public:
140 const t_rnxObsHeader& header() const {return _header;}
[3956]141 void setHeader(const t_rnxObsHeader& header, double version);
[3845]142 void writeHeader();
143 void writeEpoch(const t_rnxEpo* epo);
[3844]144
145 private:
[3956]146 enum e_trafo {trafoNone, trafo2to3, trafo3to2};
147
[3866]148 void writeEpochV2(const t_rnxEpo* epo);
149 void writeEpochV3(const t_rnxEpo* epo);
[3994]150 t_rnxEpo* nextEpochV2();
151 t_rnxEpo* nextEpochV3();
[3717]152 void handleEpochFlag(int flag, const QString& line);
[3960]153
[3956]154 QString type2to3(char sys, const QString& typeV2);
[3962]155 QString type3to2(const QString& typeV3);
[3716]156
[3960]157 std::map<char, std::map<int, int> > _indexMap2to3;
158 std::map<char, std::map<int, int> > _indexMap3to2;
159
[3843]160 e_inpOut _inpOut;
[3718]161 QFile* _file;
[3717]162 QString _fileName;
[3718]163 QTextStream* _stream;
[3716]164 t_rnxObsHeader _header;
165 t_rnxEpo _currEpo;
166 bool _flgPowerFail;
[3956]167 e_trafo _trafo;
[3716]168};
169
170#endif
Note: See TracBrowser for help on using the repository browser.