source: ntrip/branches/BNC_2.12/src/satObs.cpp@ 8484

Last change on this file since 8484 was 8484, checked in by stuerze, 6 years ago

SSR parameter clock rate, clock drift and URA are added within RTNET format

File size: 13.8 KB
RevLine 
[6176]1#include <iostream>
[6177]2#include <iomanip>
[6176]3#include <sstream>
[6495]4#include <newmatio.h>
[6144]5
6#include "satObs.h"
[6178]7
[6144]8using namespace std;
9
[6466]10// Constructor
[6144]11////////////////////////////////////////////////////////////////////////////
[6466]12t_clkCorr::t_clkCorr() {
[6589]13 _updateInt = 0;
[6160]14 _iod = 0;
15 _dClk = 0.0;
16 _dotDClk = 0.0;
17 _dotDotDClk = 0.0;
[6144]18}
19
20//
21////////////////////////////////////////////////////////////////////////////
[6507]22void t_clkCorr::writeEpoch(ostream* out, const QList<t_clkCorr>& corrList) {
[6456]23 if (!out || corrList.size() == 0) {
24 return;
25 }
[6457]26 out->setf(ios::fixed);
27 bncTime epoTime;
28 QListIterator<t_clkCorr> it(corrList);
29 while (it.hasNext()) {
30 const t_clkCorr& corr = it.next();
31 if (!epoTime.valid()) {
32 epoTime = corr._time;
[6556]33 *out << "> CLOCK " << epoTime.datestr(' ') << ' ' << epoTime.timestr(1,' ') << " "
34 << corr._updateInt << " "
[6458]35 << corrList.size() << ' ' << corr._staID << endl;
[6457]36 }
[7058]37 *out << corr._prn.toString() << ' ' << setw(11) << corr._iod << ' '
[6457]38 << setw(10) << setprecision(4) << corr._dClk * t_CST::c << ' '
39 << setw(10) << setprecision(4) << corr._dotDClk * t_CST::c << ' '
40 << setw(10) << setprecision(4) << corr._dotDotDClk * t_CST::c << endl;
41 }
[6456]42 out->flush();
[6144]43}
44
45//
46////////////////////////////////////////////////////////////////////////////
[6507]47void t_clkCorr::readEpoch(const string& epoLine, istream& inStream, QList<t_clkCorr>& corrList) {
[6556]48 bncTime epoTime;
49 unsigned int updateInt;
50 int numCorr;
51 string staID;
52 if (t_corrSSR::readEpoLine(epoLine, epoTime, updateInt, numCorr, staID) != t_corrSSR::clkCorr) {
[6502]53 return;
54 }
[6503]55 for (int ii = 0; ii < numCorr; ii++) {
[6504]56 t_clkCorr corr;
[6556]57 corr._time = epoTime;
58 corr._updateInt = updateInt;
59 corr._staID = staID;
[6503]60
61 string line;
[6507]62 getline(inStream, line);
[6503]63 istringstream in(line.c_str());
64
[6504]65 in >> corr._prn >> corr._iod >> corr._dClk >> corr._dotDClk >> corr._dotDotDClk;
[7003]66 if (corr._prn.system() == 'E') {
67 corr._prn.setFlags(1);// I/NAV
68 }
[7014]69 corr._dClk /= t_CST::c;
70 corr._dotDClk /= t_CST::c;
71 corr._dotDotDClk /= t_CST::c;
72
[6504]73 corrList.push_back(corr);
[6503]74 }
[6180]75}
76
[6466]77// Constructor
[6180]78////////////////////////////////////////////////////////////////////////////
[6466]79t_orbCorr::t_orbCorr() {
[6589]80 _updateInt = 0;
81 _iod = 0;
82 _system = 'R';
[6160]83 _xr.ReSize(3); _xr = 0.0;
84 _dotXr.ReSize(3); _dotXr = 0.0;
[6144]85}
86
87//
88////////////////////////////////////////////////////////////////////////////
[6507]89void t_orbCorr::writeEpoch(ostream* out, const QList<t_orbCorr>& corrList) {
[6456]90 if (!out || corrList.size() == 0) {
91 return;
92 }
[6460]93 out->setf(ios::fixed);
94 bncTime epoTime;
95 QListIterator<t_orbCorr> it(corrList);
96 while (it.hasNext()) {
97 const t_orbCorr& corr = it.next();
98 if (!epoTime.valid()) {
99 epoTime = corr._time;
[6556]100 *out << "> ORBIT " << epoTime.datestr(' ') << ' ' << epoTime.timestr(1,' ') << " "
101 << corr._updateInt << " "
[6460]102 << corrList.size() << ' ' << corr._staID << endl;
103 }
[7058]104 *out << corr._prn.toString() << ' ' << setw(11) << corr._iod << ' '
[6460]105 << setw(10) << setprecision(4) << corr._xr[0] << ' '
106 << setw(10) << setprecision(4) << corr._xr[1] << ' '
107 << setw(10) << setprecision(4) << corr._xr[2] << " "
108 << setw(10) << setprecision(4) << corr._dotXr[0] << ' '
109 << setw(10) << setprecision(4) << corr._dotXr[1] << ' '
110 << setw(10) << setprecision(4) << corr._dotXr[2] << endl;
111 }
[6456]112 out->flush();
[6144]113}
114
[6455]115//
116////////////////////////////////////////////////////////////////////////////
[6507]117void t_orbCorr::readEpoch(const string& epoLine, istream& inStream, QList<t_orbCorr>& corrList) {
[6556]118 bncTime epoTime;
119 unsigned int updateInt;
120 int numCorr;
121 string staID;
122 if (t_corrSSR::readEpoLine(epoLine, epoTime, updateInt, numCorr, staID) != t_corrSSR::orbCorr) {
[6504]123 return;
124 }
125 for (int ii = 0; ii < numCorr; ii++) {
126 t_orbCorr corr;
[6556]127 corr._time = epoTime;
128 corr._updateInt = updateInt;
129 corr._staID = staID;
[6504]130
131 string line;
[6507]132 getline(inStream, line);
[6504]133 istringstream in(line.c_str());
134
[7003]135 in >> corr._prn >> corr._iod
[6504]136 >> corr._xr[0] >> corr._xr[1] >> corr._xr[2]
137 >> corr._dotXr[0] >> corr._dotXr[1] >> corr._dotXr[2];
138
[7003]139 if (corr._prn.system() == 'E') {
140 corr._prn.setFlags(1);// I/NAV
141 }
[6504]142 corrList.push_back(corr);
143 }
[6455]144}
[6475]145
[8484]146// Constructor
147////////////////////////////////////////////////////////////////////////////
148t_URA::t_URA() {
149 _updateInt = 0;
150 _iod = 0;
151 _ura = 0.0;
152}
153
154//
155////////////////////////////////////////////////////////////////////////////
156void t_URA::writeEpoch(ostream* out, const QList<t_URA>& corrList) {
157 if (!out || corrList.size() == 0) {
158 return;
159 }
160 out->setf(ios::fixed);
161 bncTime epoTime;
162 QListIterator<t_URA> it(corrList);
163 while (it.hasNext()) {
164 const t_URA& corr = it.next();
165 if (!epoTime.valid()) {
166 epoTime = corr._time;
167 *out << "> URA " << epoTime.datestr(' ') << ' ' << epoTime.timestr(1,' ') << " "
168 << corr._updateInt << " "
169 << corrList.size() << ' ' << corr._staID << endl;
170 }
171 *out << corr._prn.toString() << ' ' << setw(11) << corr._iod << ' '
172 << setw(10) << setprecision(4) << corr._ura << endl;
173 }
174 out->flush();
175}
176
177//
178////////////////////////////////////////////////////////////////////////////
179void t_URA::readEpoch(const string& epoLine, istream& inStream, QList<t_URA>& corrList) {
180 bncTime epoTime;
181 unsigned int updateInt;
182 int numCorr;
183 string staID;
184 if (t_corrSSR::readEpoLine(epoLine, epoTime, updateInt, numCorr, staID) != t_corrSSR::URA) {
185 return;
186 }
187 for (int ii = 0; ii < numCorr; ii++) {
188 t_URA corr;
189 corr._time = epoTime;
190 corr._updateInt = updateInt;
191 corr._staID = staID;
192
193 string line;
194 getline(inStream, line);
195 istringstream in(line.c_str());
196
197 in >> corr._prn >> corr._iod >> corr._ura;
198
199 corrList.push_back(corr);
200 }
201}
202
[6475]203//
204////////////////////////////////////////////////////////////////////////////
[6507]205void t_satCodeBias::writeEpoch(ostream* out, const QList<t_satCodeBias>& biasList) {
[6476]206 if (!out || biasList.size() == 0) {
207 return;
208 }
209 out->setf(ios::fixed);
210 bncTime epoTime;
211 QListIterator<t_satCodeBias> it(biasList);
212 while (it.hasNext()) {
213 const t_satCodeBias& satCodeBias = it.next();
214 if (!epoTime.valid()) {
215 epoTime = satCodeBias._time;
[6556]216 *out << "> CODE_BIAS " << epoTime.datestr(' ') << ' ' << epoTime.timestr(1,' ') << " "
217 << satCodeBias._updateInt << " "
[6476]218 << biasList.size() << ' ' << satCodeBias._staID << endl;
219 }
[6567]220 *out << satCodeBias._prn.toString() << " " << setw(2) << satCodeBias._bias.size();
[6477]221 for (unsigned ii = 0; ii < satCodeBias._bias.size(); ii++) {
222 const t_frqCodeBias& frqCodeBias = satCodeBias._bias[ii];
223 *out << " " << frqCodeBias._rnxType2ch << ' '
224 << setw(10) << setprecision(4) << frqCodeBias._value;
225 }
[6476]226 *out << endl;
227 }
228 out->flush();
[6475]229}
230
231//
232////////////////////////////////////////////////////////////////////////////
[6507]233void t_satCodeBias::readEpoch(const string& epoLine, istream& inStream, QList<t_satCodeBias>& biasList) {
[6556]234 bncTime epoTime;
235 unsigned int updateInt;
236 int numSat;
237 string staID;
238 if (t_corrSSR::readEpoLine(epoLine, epoTime, updateInt, numSat, staID) != t_corrSSR::codeBias) {
[6505]239 return;
240 }
241 for (int ii = 0; ii < numSat; ii++) {
242 t_satCodeBias satCodeBias;
[6556]243 satCodeBias._time = epoTime;
244 satCodeBias._updateInt = updateInt;
245 satCodeBias._staID = staID;
[6505]246
247 string line;
[6507]248 getline(inStream, line);
[6505]249 istringstream in(line.c_str());
250
[6567]251 int numBias;
252 in >> satCodeBias._prn >> numBias;
[6505]253
254 while (in.good()) {
255 t_frqCodeBias frqCodeBias;
256 in >> frqCodeBias._rnxType2ch >> frqCodeBias._value;
257 if (!frqCodeBias._rnxType2ch.empty()) {
258 satCodeBias._bias.push_back(frqCodeBias);
259 }
260 }
261
262 biasList.push_back(satCodeBias);
263 }
[6475]264}
[6481]265
266//
267////////////////////////////////////////////////////////////////////////////
[6507]268void t_satPhaseBias::writeEpoch(ostream* out, const QList<t_satPhaseBias>& biasList) {
[6493]269 if (!out || biasList.size() == 0) {
270 return;
271 }
272 out->setf(ios::fixed);
273 bncTime epoTime;
274 QListIterator<t_satPhaseBias> it(biasList);
275 while (it.hasNext()) {
276 const t_satPhaseBias& satPhaseBias = it.next();
277 if (!epoTime.valid()) {
278 epoTime = satPhaseBias._time;
[6556]279 *out << "> PHASE_BIAS " << epoTime.datestr(' ') << ' ' << epoTime.timestr(1,' ') << " "
280 << satPhaseBias._updateInt << " "
[6857]281 << biasList.size() << ' ' << satPhaseBias._staID << endl;
[6859]282 *out << " " << satPhaseBias._dispBiasConstistInd << " "
283 << satPhaseBias._MWConsistInd << endl;
[6493]284 }
[6494]285 *out << satPhaseBias._prn.toString() << ' '
286 << setw(12) << setprecision(8) << satPhaseBias._yawDeg << ' '
[6567]287 << setw(12) << setprecision(8) << satPhaseBias._yawDegRate << " "
288 << setw(2) << satPhaseBias._bias.size();
[6493]289 for (unsigned ii = 0; ii < satPhaseBias._bias.size(); ii++) {
290 const t_frqPhaseBias& frqPhaseBias = satPhaseBias._bias[ii];
291 *out << " " << frqPhaseBias._rnxType2ch << ' '
[6494]292 << setw(10) << setprecision(4) << frqPhaseBias._value << ' '
293 << setw(3) << frqPhaseBias._fixIndicator << ' '
294 << setw(3) << frqPhaseBias._fixWideLaneIndicator << ' '
295 << setw(3) << frqPhaseBias._jumpCounter;
[6493]296 }
297 *out << endl;
298 }
299 out->flush();
[6481]300}
301
302//
303////////////////////////////////////////////////////////////////////////////
[6507]304void t_satPhaseBias::readEpoch(const string& epoLine, istream& inStream, QList<t_satPhaseBias>& biasList) {
[6556]305 bncTime epoTime;
306 unsigned int updateInt;
307 int numSat;
308 string staID;
[6859]309 unsigned int dispInd;
310 unsigned int mwInd;
[6556]311 if (t_corrSSR::readEpoLine(epoLine, epoTime, updateInt, numSat, staID) != t_corrSSR::phaseBias) {
[6506]312 return;
313 }
[6859]314 for (int ii = 0; ii <= numSat; ii++) {
[6506]315 t_satPhaseBias satPhaseBias;
[6556]316 satPhaseBias._time = epoTime;
317 satPhaseBias._updateInt = updateInt;
318 satPhaseBias._staID = staID;
[6506]319
320 string line;
[6507]321 getline(inStream, line);
[6506]322 istringstream in(line.c_str());
[6857]323
[6859]324 if (ii == 0) {
325 in >> dispInd >> mwInd;
326 continue;
327 }
328 satPhaseBias._dispBiasConstistInd = dispInd;
329 satPhaseBias._MWConsistInd = mwInd;
330
[6567]331 int numBias;
[6859]332 in >> satPhaseBias._prn >> satPhaseBias._yawDeg >> satPhaseBias._yawDegRate
333 >> numBias;
[6506]334
335 while (in.good()) {
336 t_frqPhaseBias frqPhaseBias;
337 in >> frqPhaseBias._rnxType2ch >> frqPhaseBias._value
338 >> frqPhaseBias._fixIndicator >> frqPhaseBias._fixWideLaneIndicator
339 >> frqPhaseBias._jumpCounter;
340 if (!frqPhaseBias._rnxType2ch.empty()) {
341 satPhaseBias._bias.push_back(frqPhaseBias);
342 }
343 }
344
345 biasList.push_back(satPhaseBias);
346 }
[6481]347}
[6482]348
349//
350////////////////////////////////////////////////////////////////////////////
[6507]351void t_vTec::write(ostream* out, const t_vTec& vTec) {
[6493]352 if (!out || vTec._layers.size() == 0) {
353 return;
354 }
355 out->setf(ios::fixed);
356 bncTime epoTime = vTec._time;
[6556]357 *out << "> VTEC " << epoTime.datestr(' ') << ' ' << epoTime.timestr(1,' ') << " "
358 << vTec._updateInt << " "
[6493]359 << vTec._layers.size() << ' ' << vTec._staID << endl;
[6495]360 for (unsigned ii = 0; ii < vTec._layers.size(); ii++) {
361 const t_vTecLayer& layer = vTec._layers[ii];
[6496]362 *out << setw(2) << ii+1 << ' '
[6878]363 << setw(2) << layer._C.Nrows()-1 << ' '
364 << setw(2) << layer._C.Ncols()-1 << ' '
[6496]365 << setw(10) << setprecision(1) << layer._height << endl
[6495]366 << setw(10) << setprecision(4) << layer._C
367 << setw(10) << setprecision(4) << layer._S;
368 }
[6493]369 out->flush();
[6482]370}
371
372//
373////////////////////////////////////////////////////////////////////////////
[6507]374void t_vTec::read(const string& epoLine, istream& inStream, t_vTec& vTec) {
[6556]375 bncTime epoTime;
376 unsigned int updateInt;
377 int numLayers;
378 string staID;
379 if (t_corrSSR::readEpoLine(epoLine, epoTime, updateInt, numLayers, staID) != t_corrSSR::vTec) {
[6507]380 return;
381 }
382 if (numLayers <= 0) {
383 return;
384 }
[6556]385 vTec._time = epoTime;
386 vTec._updateInt = updateInt;
387 vTec._staID = staID;
[6507]388 for (int ii = 0; ii < numLayers; ii++) {
389 t_vTecLayer layer;
390
391 string line;
392 getline(inStream, line);
393 istringstream in(line.c_str());
394
395 int dummy, maxDeg, maxOrd;
[6515]396 in >> dummy >> maxDeg >> maxOrd >> layer._height;
[6507]397
[6878]398 layer._C.ReSize(maxDeg+1, maxOrd+1);
399 layer._S.ReSize(maxDeg+1, maxOrd+1);
[6507]400
[6878]401 for (int iDeg = 0; iDeg <= maxDeg; iDeg++) {
402 for (int iOrd = 0; iOrd <= maxOrd; iOrd++) {
[6508]403 inStream >> layer._C[iDeg][iOrd];
404 }
405 }
[6878]406 for (int iDeg = 0; iDeg <= maxDeg; iDeg++) {
407 for (int iOrd = 0; iOrd <= maxOrd; iOrd++) {
[6508]408 inStream >> layer._S[iDeg][iOrd];
409 }
410 }
[6507]411
412 vTec._layers.push_back(layer);
413 }
[6482]414}
[6498]415
416//
417////////////////////////////////////////////////////////////////////////////
[6501]418t_corrSSR::e_type t_corrSSR::readEpoLine(const string& line, bncTime& epoTime,
[6556]419 unsigned int& updateInt, int& numEntries,
420 string& staID) {
[6498]421
[6500]422 istringstream inLine(line.c_str());
423
424 char epoChar;
425 string typeString;
426 int year, month, day, hour, min;
427 double sec;
428
[6501]429 inLine >> epoChar >> typeString
[6556]430 >> year >> month >> day >> hour >> min >> sec >> updateInt >> numEntries >> staID;
[6500]431
432 if (epoChar == '>') {
433 epoTime.set(year, month, day, hour, min, sec);
434 if (typeString == "CLOCK") {
435 return clkCorr;
436 }
437 else if (typeString == "ORBIT") {
438 return orbCorr;
439 }
440 else if (typeString == "CODE_BIAS") {
441 return codeBias;
442 }
443 else if (typeString == "PHASE_BIAS") {
444 return phaseBias;
445 }
446 else if (typeString == "VTEC") {
447 return vTec;
448 }
[8484]449 else if (typeString == "URA") {
450 return URA;
451 }
[6500]452 }
453
454 return unknown;
[6498]455}
Note: See TracBrowser for help on using the repository browser.