source: ntrip/trunk/BNC/rinex/rnxnavfile.cpp@ 3757

Last change on this file since 3757 was 3757, checked in by mervart, 12 years ago
File size: 4.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_rnxNavFile
30 *
31 * Purpose: Reads RINEX Navigation File
32 *
33 * Author: L. Mervart
34 *
35 * Created: 24-Jan-2012
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42#include <newmatio.h>
43#include "rnxnavfile.h"
44#include "bncutils.h"
45#include "RTCM3/ephemeris.h"
46
47using namespace std;
48
49// Constructor
50////////////////////////////////////////////////////////////////////////////
51t_rnxNavFile::t_rnxNavHeader::t_rnxNavHeader() {
52 _version = 0.0;
53 _glonass = false;
54}
55
56// Destructor
57////////////////////////////////////////////////////////////////////////////
58t_rnxNavFile::t_rnxNavHeader::~t_rnxNavHeader() {
59}
60
61// Read Header
62////////////////////////////////////////////////////////////////////////////
63t_irc t_rnxNavFile::t_rnxNavHeader::read(QTextStream* stream) {
64 while (stream->status() == QTextStream::Ok && !stream->atEnd()) {
65 QString line = stream->readLine();
66 if (line.isEmpty()) {
67 continue;
68 }
69 QString value = line.left(60).trimmed();
70 QString key = line.mid(60).trimmed();
71 if (key == "END OF HEADER") {
72 break;
73 }
74 else if (key == "RINEX VERSION / TYPE") {
75 QTextStream in(value.toAscii(), QIODevice::ReadOnly);
76 in >> _version;
77 if (value.indexOf("GLONASS") != -1) {
78 _glonass = true;
79 }
80 }
81 }
82
83 return success;
84}
85
86// Constructor
87////////////////////////////////////////////////////////////////////////////
88t_rnxNavFile::t_rnxNavFile(QString fileName) {
89 expandEnvVar(fileName);
90 QFile* file = new QFile(fileName);
91 file->open(QIODevice::ReadOnly | QIODevice::Text);
92 QTextStream* stream = new QTextStream();
93 stream->setDevice(file);
94 _header.read(stream);
95 this->read(stream);
96 delete stream;
97 delete file;
98}
99
100// Destructor
101////////////////////////////////////////////////////////////////////////////
102t_rnxNavFile::~t_rnxNavFile() {
103 while (!_ephs.empty()) {
104 t_eph* eph = _ephs.front();
105 _ephs.pop();
106 delete eph;
107 }
108}
109
110// Read File Content
111////////////////////////////////////////////////////////////////////////////
112void t_rnxNavFile::read(QTextStream* stream) {
113
114 while (stream->status() == QTextStream::Ok && !stream->atEnd()) {
115 QString line = stream->readLine();
116 if (line.isEmpty()) {
117 continue;
118 }
119 QStringList hlp = line.split(QRegExp("\\s+"), QString::SkipEmptyParts);
120 QString prn;
121 if (version() >= 3.0) {
122 prn = hlp.at(0);
123 }
124 else {
125 if (glonass()) {
126 prn = QString("R%1").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
127 }
128 else {
129 prn = QString("G%1").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
130 }
131 }
132 t_eph* eph = 0;
133 QStringList lines; lines << line;
134 if (prn[0] == 'G') {
135 for (int ii = 1; ii < 8; ii++) {
136 lines << stream->readLine();
137 }
138 eph = new t_ephGPS(version(), lines);
139 }
140 else if (prn[0] == 'R') {
141 for (int ii = 1; ii < 4; ii++) {
142 lines << stream->readLine();
143 }
144 eph = new t_ephGlo(version(), lines);
145 }
146 else if (prn[0] == 'E') {
147 for (int ii = 1; ii < 8; ii++) {
148 lines << stream->readLine();
149 }
150 eph = new t_ephGal(version(), lines);
151 }
152 if (eph && eph->ok()) {
153 _ephs.push(eph);
154 }
155 else {
156 delete eph;
157 }
158 }
159}
160
161// Read Next Ephemeris
162////////////////////////////////////////////////////////////////////////////
163t_eph* t_rnxNavFile::getNextEph(const bncTime& tt,
164 const QMap<QString, int>* corrIODs) {
165 while (!_ephs.empty()) {
166 t_eph* eph = _ephs.front();
167 bncTime ephTime(eph->GPSweek(), eph->GPSweeks());
168 double dt = ephTime - tt;
169 if (dt < 2*3600.0) {
170 _ephs.pop();
171 return eph;
172 }
173 else {
174 return 0;
175 }
176 }
177 return 0;
178}
Note: See TracBrowser for help on using the repository browser.