source: ntrip/trunk/BNC/src/rinex/corrfile.cpp@ 10917

Last change on this file since 10917 was 10791, checked in by mervart, 6 months ago

BNC Multifrequency and PPPAR Client (initial version)

File size: 3.9 KB
Line 
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/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: t_corrFile
30 *
31 * Purpose: Reads DGPS Correction File
32 *
33 * Author: L. Mervart
34 *
35 * Created: 12-Feb-2012
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42#include "corrfile.h"
43#include "bncutils.h"
44#include "bncephuser.h"
45
46using namespace std;
47
48// Constructor
49////////////////////////////////////////////////////////////////////////////
50t_corrFile::t_corrFile(QString fileName) {
51 _name = fileName;
52 expandEnvVar(fileName);
53 _stream.open(fileName.toLatin1().data());
54}
55
56// Destructor
57////////////////////////////////////////////////////////////////////////////
58t_corrFile::~t_corrFile() {
59}
60
61// Read till a given time
62////////////////////////////////////////////////////////////////////////////
63void t_corrFile::syncRead(const bncTime& tt) {
64
65 while (_stream.good() && (!_lastEpoTime.valid() || _lastEpoTime <= tt)) {
66
67 if (_lastLine.empty()) {
68 getline(_stream, _lastLine); stripWhiteSpace(_lastLine);
69 if (!_stream.good()) {
70 throw "t_corrFile: end of file";
71 }
72 else if (_lastLine.empty() || _lastLine[0] == '!') {
73 continue;
74 }
75 else if (_lastLine[0] != '>') {
76 throw "t_corrFile: error";
77 }
78 }
79
80 int numEntries;
81 unsigned int updateInt;
82 string staID;
83 t_corrSSR::e_type corrType = t_corrSSR::readEpoLine(_lastLine, _lastEpoTime, updateInt, numEntries, staID);
84 if (corrType == t_corrSSR::unknown) {
85 throw "t_corrFile: unknown line " + _lastLine;
86 }
87 else if (_lastEpoTime > tt) {
88 break;
89 }
90 else if (corrType == t_corrSSR::clkCorr) {
91 QList<t_clkCorr> clkCorrList;
92 t_clkCorr::readEpoch(_lastLine, _stream, clkCorrList);
93 emit newClkCorrections(clkCorrList);
94 }
95 else if (corrType == t_corrSSR::orbCorr) {
96 QList<t_orbCorr> orbCorrList;
97 t_orbCorr::readEpoch(_lastLine, _stream, orbCorrList);
98 QListIterator<t_orbCorr> it(orbCorrList);
99 while (it.hasNext()) {
100 const t_orbCorr& corr = it.next();
101 QString corrPrn = QString(corr._prn.toInternalString().c_str());
102 _corrIODs[corrPrn] = corr._iod;
103 }
104 emit newOrbCorrections(orbCorrList);
105 }
106 else if (corrType == t_corrSSR::codeBias) {
107 QList<t_satCodeBias> satCodeBiasList;
108 t_satCodeBias::readEpoch(_lastLine, _stream, satCodeBiasList);
109 emit newCodeBiases(satCodeBiasList);
110 }
111 else if (corrType == t_corrSSR::phaseBias) {
112 QList<t_satPhaseBias> satPhaseBiasList;
113 t_satPhaseBias::readEpoch(_lastLine, _stream, satPhaseBiasList);
114 emit newPhaseBiases(satPhaseBiasList);
115 }
116 else if (corrType == t_corrSSR::vTec) {
117 t_vTec vTec;
118 t_vTec::read(_lastLine, _stream, vTec);
119 emit newTec(vTec);
120 }
121
122 _lastLine.clear();
123 }
124}
Note: See TracBrowser for help on using the repository browser.