[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 | *
|
---|
| 37 | * Changes:
|
---|
| 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 |
|
---|
| 48 | using namespace std;
|
---|
| 49 |
|
---|
| 50 | // Constructor
|
---|
| 51 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3657] | 52 | t_rnxNavFile::t_rnxNavHeader::t_rnxNavHeader() {
|
---|
| 53 | _version = 0.0;
|
---|
[3659] | 54 | _glonass = false;
|
---|
[3645] | 55 | }
|
---|
| 56 |
|
---|
| 57 | // Destructor
|
---|
| 58 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3657] | 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.toAscii(), QIODevice::ReadOnly);
|
---|
| 77 | in >> _version;
|
---|
[3659] | 78 | if (value.indexOf("GLONASS") != -1) {
|
---|
| 79 | _glonass = true;
|
---|
| 80 | }
|
---|
[3657] | 81 | }
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | return success;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | // Constructor
|
---|
| 88 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3999] | 89 | t_rnxNavFile::t_rnxNavFile(const QString& fileName, e_inpOut inpOut) {
|
---|
| 90 | _inpOut = inpOut;
|
---|
| 91 | _stream = 0;
|
---|
| 92 | _file = 0;
|
---|
| 93 | if (_inpOut == input) {
|
---|
| 94 | openRead(fileName);
|
---|
| 95 | }
|
---|
| 96 | else {
|
---|
| 97 | openWrite(fileName);
|
---|
| 98 | }
|
---|
[3657] | 99 | }
|
---|
| 100 |
|
---|
[3999] | 101 | // Open for input
|
---|
| 102 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 103 | void t_rnxNavFile::openRead(const QString& fileName) {
|
---|
| 104 |
|
---|
| 105 | _fileName = fileName; expandEnvVar(_fileName);
|
---|
| 106 | _file = new QFile(_fileName);
|
---|
| 107 | _file->open(QIODevice::ReadOnly | QIODevice::Text);
|
---|
| 108 | _stream = new QTextStream();
|
---|
| 109 | _stream->setDevice(_file);
|
---|
| 110 |
|
---|
| 111 | _header.read(_stream);
|
---|
| 112 | this->read(_stream);
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | // Open for output
|
---|
| 116 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 117 | void t_rnxNavFile::openWrite(const QString& fileName) {
|
---|
| 118 |
|
---|
| 119 | _fileName = fileName; expandEnvVar(_fileName);
|
---|
| 120 | _file = new QFile(_fileName);
|
---|
| 121 | _file->open(QIODevice::WriteOnly | QIODevice::Text);
|
---|
| 122 | _stream = new QTextStream();
|
---|
| 123 | _stream->setDevice(_file);
|
---|
| 124 | }
|
---|
| 125 |
|
---|
[3657] | 126 | // Destructor
|
---|
| 127 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3645] | 128 | t_rnxNavFile::~t_rnxNavFile() {
|
---|
[3999] | 129 | close();
|
---|
[3758] | 130 | for (unsigned ii = 0; ii < _ephs.size(); ii++) {
|
---|
| 131 | delete _ephs[ii];
|
---|
[3999] | 132 | }
|
---|
[3645] | 133 | }
|
---|
| 134 |
|
---|
[3999] | 135 | // Close
|
---|
| 136 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 137 | void t_rnxNavFile::close() {
|
---|
| 138 | delete _stream; _stream = 0;
|
---|
| 139 | delete _file; _file = 0;
|
---|
| 140 | }
|
---|
| 141 |
|
---|
[3746] | 142 | // Read File Content
|
---|
[3659] | 143 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3746] | 144 | void t_rnxNavFile::read(QTextStream* stream) {
|
---|
[3659] | 145 |
|
---|
[3746] | 146 | while (stream->status() == QTextStream::Ok && !stream->atEnd()) {
|
---|
| 147 | QString line = stream->readLine();
|
---|
[3659] | 148 | if (line.isEmpty()) {
|
---|
| 149 | continue;
|
---|
| 150 | }
|
---|
| 151 | QStringList hlp = line.split(QRegExp("\\s+"), QString::SkipEmptyParts);
|
---|
| 152 | QString prn;
|
---|
| 153 | if (version() >= 3.0) {
|
---|
| 154 | prn = hlp.at(0);
|
---|
| 155 | }
|
---|
| 156 | else {
|
---|
| 157 | if (glonass()) {
|
---|
[3669] | 158 | prn = QString("R%1").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
|
---|
[3659] | 159 | }
|
---|
| 160 | else {
|
---|
[3669] | 161 | prn = QString("G%1").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
|
---|
[3659] | 162 | }
|
---|
| 163 | }
|
---|
[3746] | 164 | t_eph* eph = 0;
|
---|
[3659] | 165 | QStringList lines; lines << line;
|
---|
| 166 | if (prn[0] == 'G') {
|
---|
| 167 | for (int ii = 1; ii < 8; ii++) {
|
---|
[3746] | 168 | lines << stream->readLine();
|
---|
[3659] | 169 | }
|
---|
| 170 | eph = new t_ephGPS(version(), lines);
|
---|
| 171 | }
|
---|
| 172 | else if (prn[0] == 'R') {
|
---|
| 173 | for (int ii = 1; ii < 4; ii++) {
|
---|
[3746] | 174 | lines << stream->readLine();
|
---|
[3659] | 175 | }
|
---|
| 176 | eph = new t_ephGlo(version(), lines);
|
---|
| 177 | }
|
---|
| 178 | else if (prn[0] == 'E') {
|
---|
| 179 | for (int ii = 1; ii < 8; ii++) {
|
---|
[3746] | 180 | lines << stream->readLine();
|
---|
[3659] | 181 | }
|
---|
| 182 | eph = new t_ephGal(version(), lines);
|
---|
| 183 | }
|
---|
[3662] | 184 | if (eph && eph->ok()) {
|
---|
[3758] | 185 | _ephs.push_back(eph);
|
---|
[3659] | 186 | }
|
---|
[3746] | 187 | else {
|
---|
| 188 | delete eph;
|
---|
| 189 | }
|
---|
[3659] | 190 | }
|
---|
[3746] | 191 | }
|
---|
[3659] | 192 |
|
---|
[3746] | 193 | // Read Next Ephemeris
|
---|
| 194 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3757] | 195 | t_eph* t_rnxNavFile::getNextEph(const bncTime& tt,
|
---|
| 196 | const QMap<QString, int>* corrIODs) {
|
---|
[3758] | 197 |
|
---|
[3764] | 198 | // Get Ephemeris according to IOD
|
---|
| 199 | // ------------------------------
|
---|
[3758] | 200 | if (corrIODs) {
|
---|
| 201 | QMapIterator<QString, int> itIOD(*corrIODs);
|
---|
| 202 | while (itIOD.hasNext()) {
|
---|
| 203 | itIOD.next();
|
---|
| 204 | QString prn = itIOD.key();
|
---|
| 205 | int iod = itIOD.value();
|
---|
| 206 | vector<t_eph*>::iterator it = _ephs.begin();
|
---|
| 207 | while (it != _ephs.end()) {
|
---|
| 208 | t_eph* eph = *it;
|
---|
[4150] | 209 | double dt = eph->TOC() - tt;
|
---|
[5776] | 210 | if (dt < 8*3600.0 && QString(eph->prn().toString().c_str()) == prn && eph->IOD() == iod) {
|
---|
[3758] | 211 | it = _ephs.erase(it);
|
---|
| 212 | return eph;
|
---|
| 213 | }
|
---|
| 214 | ++it;
|
---|
| 215 | }
|
---|
[3748] | 216 | }
|
---|
[3746] | 217 | }
|
---|
[3758] | 218 |
|
---|
[3764] | 219 | // Get Ephemeris according to time
|
---|
| 220 | // -------------------------------
|
---|
| 221 | else {
|
---|
| 222 | vector<t_eph*>::iterator it = _ephs.begin();
|
---|
| 223 | while (it != _ephs.end()) {
|
---|
| 224 | t_eph* eph = *it;
|
---|
[3758] | 225 |
|
---|
[4018] | 226 | double dt = eph->TOC() - tt;
|
---|
[3764] | 227 |
|
---|
| 228 | if (dt < 2*3600.0) {
|
---|
| 229 | it = _ephs.erase(it);
|
---|
| 230 | return eph;
|
---|
| 231 | }
|
---|
| 232 | ++it;
|
---|
| 233 | }
|
---|
| 234 | }
|
---|
| 235 |
|
---|
[3683] | 236 | return 0;
|
---|
[3659] | 237 | }
|
---|
[4004] | 238 |
|
---|
| 239 | //
|
---|
| 240 | ////////////////////////////////////////////////////////////////////////////
|
---|
[4219] | 241 | void t_rnxNavFile::writeHeader(const QMap<QString, QString>* txtMap) {
|
---|
[4010] | 242 |
|
---|
[5068] | 243 | QString runBy = BNC_CORE->userName();
|
---|
[4219] | 244 | QStringList comments;
|
---|
| 245 |
|
---|
| 246 | if (txtMap) {
|
---|
| 247 | QMapIterator<QString, QString> it(*txtMap);
|
---|
| 248 | while (it.hasNext()) {
|
---|
| 249 | it.next();
|
---|
| 250 | if (it.key() == "RUN BY") {
|
---|
| 251 | runBy = it.value();
|
---|
| 252 | }
|
---|
| 253 | else if (it.key() == "COMMENT") {
|
---|
| 254 | comments = it.value().split("\\n", QString::SkipEmptyParts);
|
---|
| 255 | }
|
---|
| 256 | }
|
---|
| 257 | }
|
---|
| 258 |
|
---|
[4010] | 259 | if (version() < 3.0) {
|
---|
[4230] | 260 | const QString fmt = glonass() ? "%1 GLONASS navigation data"
|
---|
| 261 | : "%1 Navigation data";
|
---|
| 262 | *_stream << QString(fmt)
|
---|
[4010] | 263 | .arg(_header._version, 9, 'f', 2)
|
---|
| 264 | .leftJustified(60)
|
---|
| 265 | << "RINEX VERSION / TYPE\n";
|
---|
| 266 | }
|
---|
| 267 | else {
|
---|
| 268 | *_stream << QString("%1 Navigation data Mixed")
|
---|
| 269 | .arg(_header._version, 9, 'f', 2)
|
---|
| 270 | .leftJustified(60)
|
---|
| 271 | << "RINEX VERSION / TYPE\n";
|
---|
| 272 | }
|
---|
| 273 |
|
---|
[4232] | 274 | const QString fmtDate = (version() < 3.0) ? "dd-MMM-yy hh:mm"
|
---|
[4231] | 275 | : "yyyyMMdd hhmmss UTC";
|
---|
[4010] | 276 | *_stream << QString("%1%2%3")
|
---|
[5068] | 277 | .arg(BNC_CORE->pgmName(), -20)
|
---|
[4219] | 278 | .arg(runBy.trimmed().left(20), -20)
|
---|
[4231] | 279 | .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
|
---|
[4010] | 280 | .leftJustified(60)
|
---|
| 281 | << "PGM / RUN BY / DATE\n";
|
---|
| 282 |
|
---|
[4222] | 283 | QStringListIterator itCmnt(comments);
|
---|
| 284 | while (itCmnt.hasNext()) {
|
---|
| 285 | *_stream << itCmnt.next().trimmed().left(60).leftJustified(60) << "COMMENT\n";
|
---|
| 286 | }
|
---|
| 287 |
|
---|
[4010] | 288 | *_stream << QString()
|
---|
| 289 | .leftJustified(60)
|
---|
| 290 | << "END OF HEADER\n";
|
---|
[4004] | 291 | }
|
---|
| 292 |
|
---|
| 293 | //
|
---|
| 294 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 295 | void t_rnxNavFile::writeEph(const t_eph* eph) {
|
---|
[4013] | 296 | *_stream << eph->toString(version());
|
---|
[4004] | 297 | }
|
---|