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 "bnccore.h"
|
---|
45 | #include "bncutils.h"
|
---|
46 | #include "ephemeris.h"
|
---|
47 |
|
---|
48 | using namespace std;
|
---|
49 |
|
---|
50 | // Constructor
|
---|
51 | ////////////////////////////////////////////////////////////////////////////
|
---|
52 | t_rnxNavFile::t_rnxNavHeader::t_rnxNavHeader() {
|
---|
53 | _version = 0.0;
|
---|
54 | _glonass = false;
|
---|
55 | }
|
---|
56 |
|
---|
57 | // Destructor
|
---|
58 | ////////////////////////////////////////////////////////////////////////////
|
---|
59 | t_rnxNavFile::t_rnxNavHeader::~t_rnxNavHeader() {
|
---|
60 | }
|
---|
61 |
|
---|
62 | // Read Header
|
---|
63 | ////////////////////////////////////////////////////////////////////////////
|
---|
64 | t_irc t_rnxNavFile::t_rnxNavHeader::read(QTextStream* stream) {
|
---|
65 | while (stream->status() == QTextStream::Ok && !stream->atEnd()) {
|
---|
66 | QString line = stream->readLine();
|
---|
67 | if (line.isEmpty()) {
|
---|
68 | continue;
|
---|
69 | }
|
---|
70 | QString value = line.left(60).trimmed();
|
---|
71 | QString key = line.mid(60).trimmed();
|
---|
72 | if (key == "END OF HEADER") {
|
---|
73 | break;
|
---|
74 | }
|
---|
75 | else if (key == "RINEX VERSION / TYPE") {
|
---|
76 | QTextStream in(value.toLatin1(), QIODevice::ReadOnly);
|
---|
77 | in >> _version;
|
---|
78 | if (value.indexOf("GLONASS") != -1) {
|
---|
79 | _glonass = true;
|
---|
80 | }
|
---|
81 | }
|
---|
82 | else if (key == "COMMENT") {
|
---|
83 | _comments.append(value.trimmed());
|
---|
84 | }
|
---|
85 | }
|
---|
86 |
|
---|
87 | return success;
|
---|
88 | }
|
---|
89 |
|
---|
90 | // Constructor
|
---|
91 | ////////////////////////////////////////////////////////////////////////////
|
---|
92 | t_rnxNavFile::t_rnxNavFile(const QString& fileName, e_inpOut inpOut) {
|
---|
93 | _inpOut = inpOut;
|
---|
94 | _stream = 0;
|
---|
95 | _file = 0;
|
---|
96 | if (_inpOut == input) {
|
---|
97 | openRead(fileName);
|
---|
98 | }
|
---|
99 | else {
|
---|
100 | openWrite(fileName);
|
---|
101 | }
|
---|
102 | }
|
---|
103 |
|
---|
104 | // Open for input
|
---|
105 | ////////////////////////////////////////////////////////////////////////////
|
---|
106 | void t_rnxNavFile::openRead(const QString& fileName) {
|
---|
107 |
|
---|
108 | _fileName = fileName; expandEnvVar(_fileName);
|
---|
109 | _file = new QFile(_fileName);
|
---|
110 | _file->open(QIODevice::ReadOnly | QIODevice::Text);
|
---|
111 | _stream = new QTextStream();
|
---|
112 | _stream->setDevice(_file);
|
---|
113 |
|
---|
114 | _header.read(_stream);
|
---|
115 | this->read(_stream);
|
---|
116 | }
|
---|
117 |
|
---|
118 | // Open for output
|
---|
119 | ////////////////////////////////////////////////////////////////////////////
|
---|
120 | void t_rnxNavFile::openWrite(const QString& fileName) {
|
---|
121 |
|
---|
122 | _fileName = fileName; expandEnvVar(_fileName);
|
---|
123 | _file = new QFile(_fileName);
|
---|
124 | _file->open(QIODevice::WriteOnly | QIODevice::Text);
|
---|
125 | _stream = new QTextStream();
|
---|
126 | _stream->setDevice(_file);
|
---|
127 | }
|
---|
128 |
|
---|
129 | // Destructor
|
---|
130 | ////////////////////////////////////////////////////////////////////////////
|
---|
131 | t_rnxNavFile::~t_rnxNavFile() {
|
---|
132 | close();
|
---|
133 | for (unsigned ii = 0; ii < _ephs.size(); ii++) {
|
---|
134 | delete _ephs[ii];
|
---|
135 | }
|
---|
136 | }
|
---|
137 |
|
---|
138 | // Close
|
---|
139 | ////////////////////////////////////////////////////////////////////////////
|
---|
140 | void t_rnxNavFile::close() {
|
---|
141 | delete _stream; _stream = 0;
|
---|
142 | delete _file; _file = 0;
|
---|
143 | }
|
---|
144 |
|
---|
145 | // Read File Content
|
---|
146 | ////////////////////////////////////////////////////////////////////////////
|
---|
147 | void t_rnxNavFile::read(QTextStream* stream) {
|
---|
148 |
|
---|
149 | while (stream->status() == QTextStream::Ok && !stream->atEnd()) {
|
---|
150 | QString line = stream->readLine();
|
---|
151 | if (line.isEmpty()) {
|
---|
152 | continue;
|
---|
153 | }
|
---|
154 | QStringList hlp = line.split(QRegExp("\\s+"), QString::SkipEmptyParts);
|
---|
155 | QString prn;
|
---|
156 | if (version() >= 3.0) {
|
---|
157 | prn = hlp.at(0);
|
---|
158 | }
|
---|
159 | else {
|
---|
160 | if (glonass()) {
|
---|
161 | prn = QString("R%1_0").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
|
---|
162 | }
|
---|
163 | else {
|
---|
164 | prn = QString("G%1_0").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
|
---|
165 | }
|
---|
166 | }
|
---|
167 |
|
---|
168 | t_eph* eph = 0;
|
---|
169 | QStringList lines; lines << line;
|
---|
170 | if (prn[0] == 'G') {
|
---|
171 | for (int ii = 1; ii < 8; ii++) {
|
---|
172 | lines << stream->readLine();
|
---|
173 | }
|
---|
174 | eph = new t_ephGPS(version(), lines);
|
---|
175 | }
|
---|
176 | else if (prn[0] == 'R') {
|
---|
177 | for (int ii = 1; ii < 4; ii++) {
|
---|
178 | lines << stream->readLine();
|
---|
179 | }
|
---|
180 | eph = new t_ephGlo(version(), lines);
|
---|
181 | }
|
---|
182 | else if (prn[0] == 'E') {
|
---|
183 | for (int ii = 1; ii < 8; ii++) {
|
---|
184 | lines << stream->readLine();
|
---|
185 | }
|
---|
186 | eph = new t_ephGal(version(), lines);
|
---|
187 | }
|
---|
188 | else if (prn[0] == 'J') {
|
---|
189 | for (int ii = 1; ii < 8; ii++) {
|
---|
190 | lines << stream->readLine();
|
---|
191 | }
|
---|
192 | eph = new t_ephGPS(version(), lines);
|
---|
193 | }
|
---|
194 | else if (prn[0] == 'S') {
|
---|
195 | for (int ii = 1; ii < 4; ii++) {
|
---|
196 | lines << stream->readLine();
|
---|
197 | }
|
---|
198 | eph = new t_ephSBAS(version(), lines);
|
---|
199 | }
|
---|
200 | else if (prn[0] == 'C') {
|
---|
201 | for (int ii = 1; ii < 8; ii++) {
|
---|
202 | lines << stream->readLine();
|
---|
203 | }
|
---|
204 | eph = new t_ephBDS(version(), lines);
|
---|
205 | }
|
---|
206 | else if (prn[0] == 'I') {
|
---|
207 | for (int ii = 1; ii < 8; ii++) {
|
---|
208 | lines << stream->readLine();
|
---|
209 | }
|
---|
210 | eph = new t_ephGPS(version(), lines);
|
---|
211 | }
|
---|
212 | _ephs.push_back(eph);
|
---|
213 | }
|
---|
214 | }
|
---|
215 |
|
---|
216 | // Read Next Ephemeris
|
---|
217 | ////////////////////////////////////////////////////////////////////////////
|
---|
218 | t_eph* t_rnxNavFile::getNextEph(const bncTime& tt,
|
---|
219 | const QMap<QString, unsigned int>* corrIODs) {
|
---|
220 |
|
---|
221 | // Get Ephemeris according to IOD
|
---|
222 | // ------------------------------
|
---|
223 | if (corrIODs) {
|
---|
224 | QMapIterator<QString, unsigned int> itIOD(*corrIODs);
|
---|
225 | while (itIOD.hasNext()) {
|
---|
226 | itIOD.next();
|
---|
227 | QString prn = itIOD.key();
|
---|
228 | unsigned int iod = itIOD.value();
|
---|
229 | vector<t_eph*>::iterator it = _ephs.begin();
|
---|
230 | while (it != _ephs.end()) {
|
---|
231 | t_eph* eph = *it;
|
---|
232 | double dt = eph->TOC() - tt;
|
---|
233 | if (dt < 8*3600.0 && QString(eph->prn().toInternalString().c_str()) == prn && eph->IOD() == iod) {
|
---|
234 | it = _ephs.erase(it);
|
---|
235 | return eph;
|
---|
236 | }
|
---|
237 | ++it;
|
---|
238 | }
|
---|
239 | }
|
---|
240 | }
|
---|
241 |
|
---|
242 | // Get Ephemeris according to time
|
---|
243 | // -------------------------------
|
---|
244 | else {
|
---|
245 | vector<t_eph*>::iterator it = _ephs.begin();
|
---|
246 | while (it != _ephs.end()) {
|
---|
247 | t_eph* eph = *it;
|
---|
248 | double dt = eph->TOC() - tt;
|
---|
249 | if (dt < 2*3600.0) {
|
---|
250 | it = _ephs.erase(it);
|
---|
251 | return eph;
|
---|
252 | }
|
---|
253 | ++it;
|
---|
254 | }
|
---|
255 | }
|
---|
256 |
|
---|
257 | return 0;
|
---|
258 | }
|
---|
259 |
|
---|
260 | //
|
---|
261 | ////////////////////////////////////////////////////////////////////////////
|
---|
262 | void t_rnxNavFile::writeHeader(const QMap<QString, QString>* txtMap) {
|
---|
263 |
|
---|
264 | QString runBy = BNC_CORE->userName();
|
---|
265 | QStringList comments;
|
---|
266 |
|
---|
267 | if (txtMap) {
|
---|
268 | QMapIterator<QString, QString> it(*txtMap);
|
---|
269 | while (it.hasNext()) {
|
---|
270 | it.next();
|
---|
271 | if (it.key() == "RUN BY") {
|
---|
272 | runBy = it.value();
|
---|
273 | }
|
---|
274 | else if (it.key() == "COMMENT") {
|
---|
275 | comments = it.value().split("\\n", QString::SkipEmptyParts);
|
---|
276 | }
|
---|
277 | }
|
---|
278 | }
|
---|
279 |
|
---|
280 | if (version() < 3.0) {
|
---|
281 | const QString fmt = glonass() ? "%1 GLONASS navigation data"
|
---|
282 | : "%1 Navigation data";
|
---|
283 | *_stream << QString(fmt)
|
---|
284 | .arg(_header._version, 9, 'f', 2)
|
---|
285 | .leftJustified(60)
|
---|
286 | << "RINEX VERSION / TYPE\n";
|
---|
287 | }
|
---|
288 | else {
|
---|
289 | QString fmt;
|
---|
290 | t_eph::e_type sys = satSystem();
|
---|
291 | switch(sys) {
|
---|
292 | case t_eph::GPS:
|
---|
293 | fmt.append("%1 N: GNSS NAV DATA G: GPS");
|
---|
294 | break;
|
---|
295 | case t_eph::GLONASS:
|
---|
296 | fmt.append("%1 N: GNSS NAV DATA R: GLONASS");
|
---|
297 | break;
|
---|
298 | case t_eph::Galileo:
|
---|
299 | fmt.append("%1 N: GNSS NAV DATA E: Galileo");
|
---|
300 | break;
|
---|
301 | case t_eph::QZSS:
|
---|
302 | fmt.append("%1 N: GNSS NAV DATA J: QZSS");
|
---|
303 | break;
|
---|
304 | case t_eph::BDS:
|
---|
305 | fmt.append("%1 N: GNSS NAV DATA C: BDS");
|
---|
306 | break;
|
---|
307 | case t_eph::IRNSS:
|
---|
308 | fmt.append("%1 N: GNSS NAV DATA I: IRNSS");
|
---|
309 | break;
|
---|
310 | case t_eph::SBAS:
|
---|
311 | fmt.append("%1 N: GNSS NAV DATA S: SBAS");
|
---|
312 | break;
|
---|
313 | case t_eph::unknown:
|
---|
314 | fmt.append("%1 N: GNSS NAV DATA M: MIXED");
|
---|
315 | break;
|
---|
316 | }
|
---|
317 | *_stream << fmt
|
---|
318 | .arg(_header._version, 9, 'f', 2)
|
---|
319 | .leftJustified(60)
|
---|
320 | << "RINEX VERSION / TYPE\n";
|
---|
321 | }
|
---|
322 |
|
---|
323 | const QString fmtDate = (version() < 3.0) ? "dd-MMM-yy hh:mm"
|
---|
324 | : "yyyyMMdd hhmmss UTC";
|
---|
325 | *_stream << QString("%1%2%3")
|
---|
326 | .arg(BNC_CORE->pgmName(), -20)
|
---|
327 | .arg(runBy.trimmed().left(20), -20)
|
---|
328 | .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
|
---|
329 | .leftJustified(60)
|
---|
330 | << "PGM / RUN BY / DATE\n";
|
---|
331 |
|
---|
332 | QStringListIterator itCmnt(comments);
|
---|
333 | while (itCmnt.hasNext()) {
|
---|
334 | *_stream << itCmnt.next().trimmed().left(60).leftJustified(60) << "COMMENT\n";
|
---|
335 | }
|
---|
336 |
|
---|
337 | *_stream << QString()
|
---|
338 | .leftJustified(60)
|
---|
339 | << "END OF HEADER\n";
|
---|
340 | }
|
---|
341 |
|
---|
342 | //
|
---|
343 | ////////////////////////////////////////////////////////////////////////////
|
---|
344 | void t_rnxNavFile::writeEph(const t_eph* eph) {
|
---|
345 | *_stream << eph->toString(version());
|
---|
346 | }
|
---|