source: ntrip/trunk/BNC/src/rinex/rnxnavfile.cpp@ 9788

Last change on this file since 9788 was 9788, checked in by stuerze, 22 months ago

some more changes to consider RINEX Version 4 nav file (EPH key only)

File size: 11.0 KB
RevLine 
[3645]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 *
[7638]37 * Changes:
[3645]38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
[3666]42#include <newmatio.h>
[3645]43#include "rnxnavfile.h"
[5070]44#include "bnccore.h"
[3657]45#include "bncutils.h"
[5738]46#include "ephemeris.h"
[3645]47
48using namespace std;
49
50// Constructor
51////////////////////////////////////////////////////////////////////////////
[3657]52t_rnxNavFile::t_rnxNavHeader::t_rnxNavHeader() {
53 _version = 0.0;
[3659]54 _glonass = false;
[3645]55}
56
57// Destructor
58////////////////////////////////////////////////////////////////////////////
[3657]59t_rnxNavFile::t_rnxNavHeader::~t_rnxNavHeader() {
60}
61
62// Read Header
63////////////////////////////////////////////////////////////////////////////
64t_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") {
[8204]76 QTextStream in(value.toLatin1(), QIODevice::ReadOnly);
[3657]77 in >> _version;
[3659]78 if (value.indexOf("GLONASS") != -1) {
79 _glonass = true;
80 }
[3657]81 }
[7999]82 else if (key == "COMMENT") {
83 _comments.append(value.trimmed());
84 }
[3657]85 }
86
87 return success;
88}
89
90// Constructor
91////////////////////////////////////////////////////////////////////////////
[3999]92t_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 }
[3657]102}
103
[3999]104// Open for input
105////////////////////////////////////////////////////////////////////////////
106void 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////////////////////////////////////////////////////////////////////////////
120void 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
[3657]129// Destructor
130////////////////////////////////////////////////////////////////////////////
[3645]131t_rnxNavFile::~t_rnxNavFile() {
[3999]132 close();
[3758]133 for (unsigned ii = 0; ii < _ephs.size(); ii++) {
134 delete _ephs[ii];
[7638]135 }
[3645]136}
137
[3999]138// Close
139////////////////////////////////////////////////////////////////////////////
140void t_rnxNavFile::close() {
141 delete _stream; _stream = 0;
142 delete _file; _file = 0;
143}
144
[3746]145// Read File Content
[3659]146////////////////////////////////////////////////////////////////////////////
[3746]147void t_rnxNavFile::read(QTextStream* stream) {
[9765]148 QString navTypeStr;
[3659]149
[3746]150 while (stream->status() == QTextStream::Ok && !stream->atEnd()) {
[9765]151
[3746]152 QString line = stream->readLine();
[3659]153 if (line.isEmpty()) {
154 continue;
155 }
[9765]156
[3659]157 QStringList hlp = line.split(QRegExp("\\s+"), QString::SkipEmptyParts);
[9765]158 QString firstStr = hlp.at(0);
[3659]159 QString prn;
[9765]160
161 if (version() >= 3.0 && firstStr != ">") {
162 prn = firstStr;
[3659]163 }
[9765]164 else if (version() >= 4.0 && firstStr == ">") {
165 int lines2skip = 0;
166 QString key = hlp.at(1);
167 // EPH is used
168 if (key == "EPH") {
169 navTypeStr = hlp.at(3);
170 }
171 // all others are currently ignored
172 else if (key == "STO") {
173 lines2skip = 2;
174 }
175 else if (key == "EOP" || key == "ION") {
176 lines2skip = 3;
177 }
178 if (lines2skip) {
179 for (int ii = 1; ii < lines2skip; ii++) {
180 stream->readLine();
181 }
182 }
183 continue;
184 }
[3659]185 else {
186 if (glonass()) {
[7638]187 prn = QString("R%1_0").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
[3659]188 }
189 else {
[7638]190 prn = QString("G%1_0").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
[3659]191 }
192 }
[7638]193
[3746]194 t_eph* eph = 0;
[3659]195 QStringList lines; lines << line;
196 if (prn[0] == 'G') {
197 for (int ii = 1; ii < 8; ii++) {
[3746]198 lines << stream->readLine();
[3659]199 }
200 eph = new t_ephGPS(version(), lines);
201 }
202 else if (prn[0] == 'R') {
[9366]203 int num = 4;
204 if (version() >= 3.05) {
205 num += 1;
206 }
207 for (int ii = 1; ii < num; ii++) {
[3746]208 lines << stream->readLine();
[3659]209 }
210 eph = new t_ephGlo(version(), lines);
211 }
212 else if (prn[0] == 'E') {
213 for (int ii = 1; ii < 8; ii++) {
[3746]214 lines << stream->readLine();
[3659]215 }
216 eph = new t_ephGal(version(), lines);
217 }
[6377]218 else if (prn[0] == 'J') {
219 for (int ii = 1; ii < 8; ii++) {
220 lines << stream->readLine();
221 }
222 eph = new t_ephGPS(version(), lines);
223 }
[6391]224 else if (prn[0] == 'S') {
225 for (int ii = 1; ii < 4; ii++) {
226 lines << stream->readLine();
227 }
228 eph = new t_ephSBAS(version(), lines);
229 }
[6399]230 else if (prn[0] == 'C') {
231 for (int ii = 1; ii < 8; ii++) {
232 lines << stream->readLine();
233 }
[6600]234 eph = new t_ephBDS(version(), lines);
[6399]235 }
[8168]236 else if (prn[0] == 'I') {
237 for (int ii = 1; ii < 8; ii++) {
238 lines << stream->readLine();
239 }
240 eph = new t_ephGPS(version(), lines);
241 }
[9765]242 else {
243 continue;
244 }
245 if (version() >= 4.0) {
246 if (eph->setNavType(navTypeStr) != success) {
247 delete eph;
248 continue;
249 }
250 }
[8368]251 _ephs.push_back(eph);
[3659]252 }
[3746]253}
[3659]254
[3746]255// Read Next Ephemeris
256////////////////////////////////////////////////////////////////////////////
[7638]257t_eph* t_rnxNavFile::getNextEph(const bncTime& tt,
[7169]258 const QMap<QString, unsigned int>* corrIODs) {
[3758]259
[3764]260 // Get Ephemeris according to IOD
261 // ------------------------------
[3758]262 if (corrIODs) {
[7169]263 QMapIterator<QString, unsigned int> itIOD(*corrIODs);
[3758]264 while (itIOD.hasNext()) {
265 itIOD.next();
266 QString prn = itIOD.key();
[7169]267 unsigned int iod = itIOD.value();
[3758]268 vector<t_eph*>::iterator it = _ephs.begin();
269 while (it != _ephs.end()) {
270 t_eph* eph = *it;
[4150]271 double dt = eph->TOC() - tt;
[7039]272 if (dt < 8*3600.0 && QString(eph->prn().toInternalString().c_str()) == prn && eph->IOD() == iod) {
[3758]273 it = _ephs.erase(it);
274 return eph;
275 }
276 ++it;
277 }
[3748]278 }
[3746]279 }
[3758]280
[3764]281 // Get Ephemeris according to time
282 // -------------------------------
283 else {
284 vector<t_eph*>::iterator it = _ephs.begin();
285 while (it != _ephs.end()) {
286 t_eph* eph = *it;
[4018]287 double dt = eph->TOC() - tt;
[3764]288 if (dt < 2*3600.0) {
289 it = _ephs.erase(it);
290 return eph;
291 }
292 ++it;
293 }
294 }
295
[3683]296 return 0;
[3659]297}
[4004]298
[7638]299//
[4004]300////////////////////////////////////////////////////////////////////////////
[9765]301void t_rnxNavFile::writeHeader(const QMap<QString, QString>* txtMap, int numMergedFiles, int leapSecs) {
[4010]302
[5068]303 QString runBy = BNC_CORE->userName();
[4219]304 QStringList comments;
305
306 if (txtMap) {
307 QMapIterator<QString, QString> it(*txtMap);
308 while (it.hasNext()) {
309 it.next();
310 if (it.key() == "RUN BY") {
311 runBy = it.value();
312 }
313 else if (it.key() == "COMMENT") {
314 comments = it.value().split("\\n", QString::SkipEmptyParts);
315 }
316 }
317 }
318
[4010]319 if (version() < 3.0) {
[7638]320 const QString fmt = glonass() ? "%1 GLONASS navigation data"
[4230]321 : "%1 Navigation data";
322 *_stream << QString(fmt)
[4010]323 .arg(_header._version, 9, 'f', 2)
324 .leftJustified(60)
325 << "RINEX VERSION / TYPE\n";
326 }
327 else {
[8354]328 QString fmt;
329 t_eph::e_type sys = satSystem();
330 switch(sys) {
331 case t_eph::GPS:
332 fmt.append("%1 N: GNSS NAV DATA G: GPS");
333 break;
334 case t_eph::GLONASS:
335 fmt.append("%1 N: GNSS NAV DATA R: GLONASS");
336 break;
337 case t_eph::Galileo:
338 fmt.append("%1 N: GNSS NAV DATA E: Galileo");
339 break;
340 case t_eph::QZSS:
341 fmt.append("%1 N: GNSS NAV DATA J: QZSS");
342 break;
343 case t_eph::BDS:
344 fmt.append("%1 N: GNSS NAV DATA C: BDS");
345 break;
346 case t_eph::IRNSS:
347 fmt.append("%1 N: GNSS NAV DATA I: IRNSS");
348 break;
349 case t_eph::SBAS:
350 fmt.append("%1 N: GNSS NAV DATA S: SBAS");
351 break;
352 case t_eph::unknown:
353 fmt.append("%1 N: GNSS NAV DATA M: MIXED");
354 break;
355 }
356 *_stream << fmt
[4010]357 .arg(_header._version, 9, 'f', 2)
358 .leftJustified(60)
359 << "RINEX VERSION / TYPE\n";
360 }
361
[4232]362 const QString fmtDate = (version() < 3.0) ? "dd-MMM-yy hh:mm"
[4231]363 : "yyyyMMdd hhmmss UTC";
[4010]364 *_stream << QString("%1%2%3")
[5068]365 .arg(BNC_CORE->pgmName(), -20)
[4219]366 .arg(runBy.trimmed().left(20), -20)
[4231]367 .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
[4010]368 .leftJustified(60)
369 << "PGM / RUN BY / DATE\n";
370
[9765]371 if (version() >= 4.0) {
372 *_stream << QString("%1").arg(leapSecs, 6, 10, QLatin1Char(' ')).left(60).leftJustified(60)
373 << "LEAP SECONDS\n";
374
375 *_stream << QString("%1").arg(numMergedFiles, 19, 10, QLatin1Char(' ')).leftJustified(60)
376 << "MERGED FILE\n";
377 }
378
[4222]379 QStringListIterator itCmnt(comments);
380 while (itCmnt.hasNext()) {
381 *_stream << itCmnt.next().trimmed().left(60).leftJustified(60) << "COMMENT\n";
382 }
383
[9765]384
[4010]385 *_stream << QString()
386 .leftJustified(60)
387 << "END OF HEADER\n";
[4004]388}
389
[7638]390//
[4004]391////////////////////////////////////////////////////////////////////////////
392void t_rnxNavFile::writeEph(const t_eph* eph) {
[9788]393 if (version() < 4.0) {
394 if (eph->navType() == t_eph::CNAV ||
395 eph->navType() == t_eph::CNV1 ||
396 eph->navType() == t_eph::CNV2 ||
397 eph->navType() == t_eph::CNV3) {
398 return;
399 }
400 }
[4013]401 *_stream << eph->toString(version());
[4004]402}
Note: See TracBrowser for help on using the repository browser.