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

Last change on this file since 6498 was 6498, checked in by mervart, 9 years ago
File size: 3.5 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 expandEnvVar(fileName);
52 _stream.open(fileName.toAscii().data());
53}
54
55// Destructor
56////////////////////////////////////////////////////////////////////////////
57t_corrFile::~t_corrFile() {
58}
59
60// Read till a given time
61////////////////////////////////////////////////////////////////////////////
62void t_corrFile::syncRead(const bncTime& tt) {
63
64 while (_stream.good() && (!_lastEpoTime.valid() || _lastEpoTime <= tt)) {
65
66 if (_lastLine.empty()) {
67 getline(_stream, _lastLine); stripWhiteSpace(_lastLine);
68 if (!_stream.good()) {
69 throw "t_corrFile: end of file";
70 }
71 else if (_lastLine.empty() || _lastLine[0] == '!') {
72 continue;
73 }
74 else if (_lastLine[0] != '>') {
75 throw "t_corrFile: error";
76 }
77 }
78
79 t_corrSSR::e_type corrType = t_corrSSR::readEpoLine(_lastLine, _lastEpoTime);
80 if (corrType == t_corrSSR::unknown) {
81 throw "t_corrFile: unknown line " + _lastLine;
82 }
83 else if (_lastEpoTime > tt) {
84 break;
85 }
86 else if (corrType == t_corrSSR::clkCorr) {
87 QList<t_clkCorr> clkCorrList;
88 t_clkCorr::readEpoch(_lastLine, _stream, clkCorrList);
89 emit newClkCorrections(clkCorrList);
90 }
91 else if (corrType == t_corrSSR::orbCorr) {
92 QList<t_orbCorr> orbCorrList;
93 t_orbCorr::readEpoch(_lastLine, _stream, orbCorrList);
94 emit newOrbCorrections(orbCorrList);
95 }
96 else if (corrType == t_corrSSR::codeBias) {
97 QList<t_satCodeBias> satCodeBiasList;
98 t_satCodeBias::readEpoch(_lastLine, _stream, satCodeBiasList);
99 emit newCodeBiases(satCodeBiasList);
100 }
101 else if (corrType == t_corrSSR::phaseBias) {
102 QList<t_satPhaseBias> satPhaseBiasList;
103 t_satPhaseBias::readEpoch(_lastLine, _stream, satPhaseBiasList);
104 emit newPhaseBiases(satPhaseBiasList);
105 }
106 else if (corrType == t_corrSSR::vTec) {
107 t_vTec vTec;
108 t_vTec::read(_lastLine, _stream, vTec);
109 emit newTec(vTec);
110 }
111 }
112}
Note: See TracBrowser for help on using the repository browser.