[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"
|
---|
[3657] | 44 | #include "bncutils.h"
|
---|
[3659] | 45 | #include "RTCM3/ephemeris.h"
|
---|
[3645] | 46 |
|
---|
| 47 | using namespace std;
|
---|
| 48 |
|
---|
| 49 | // Constructor
|
---|
| 50 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3657] | 51 | t_rnxNavFile::t_rnxNavHeader::t_rnxNavHeader() {
|
---|
| 52 | _version = 0.0;
|
---|
[3659] | 53 | _glonass = false;
|
---|
[3645] | 54 | }
|
---|
| 55 |
|
---|
| 56 | // Destructor
|
---|
| 57 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3657] | 58 | t_rnxNavFile::t_rnxNavHeader::~t_rnxNavHeader() {
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | // Read Header
|
---|
| 62 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 63 | t_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;
|
---|
[3659] | 77 | if (value.indexOf("GLONASS") != -1) {
|
---|
| 78 | _glonass = true;
|
---|
| 79 | }
|
---|
[3657] | 80 | }
|
---|
| 81 | }
|
---|
| 82 |
|
---|
| 83 | return success;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | // Constructor
|
---|
| 87 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3658] | 88 | t_rnxNavFile::t_rnxNavFile(QString fileName) {
|
---|
[3657] | 89 | expandEnvVar(fileName);
|
---|
| 90 | _file = new QFile(fileName);
|
---|
| 91 | _file->open(QIODevice::ReadOnly | QIODevice::Text);
|
---|
| 92 | _stream = new QTextStream();
|
---|
| 93 | _stream->setDevice(_file);
|
---|
| 94 | _header.read(_stream);
|
---|
| 95 | }
|
---|
| 96 |
|
---|
| 97 | // Destructor
|
---|
| 98 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3645] | 99 | t_rnxNavFile::~t_rnxNavFile() {
|
---|
[3657] | 100 | delete _stream;
|
---|
| 101 | delete _file;
|
---|
[3645] | 102 | }
|
---|
| 103 |
|
---|
[3659] | 104 | // Read Next Ephemeris
|
---|
| 105 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3683] | 106 | t_eph* t_rnxNavFile::getNextEph() {
|
---|
[3659] | 107 |
|
---|
[3683] | 108 | t_eph* eph = 0;
|
---|
[3662] | 109 |
|
---|
[3659] | 110 | while (_stream->status() == QTextStream::Ok && !_stream->atEnd()) {
|
---|
| 111 | QString line = _stream->readLine();
|
---|
| 112 | if (line.isEmpty()) {
|
---|
| 113 | continue;
|
---|
| 114 | }
|
---|
| 115 | QStringList hlp = line.split(QRegExp("\\s+"), QString::SkipEmptyParts);
|
---|
| 116 | QString prn;
|
---|
| 117 | if (version() >= 3.0) {
|
---|
| 118 | prn = hlp.at(0);
|
---|
| 119 | }
|
---|
| 120 | else {
|
---|
| 121 | if (glonass()) {
|
---|
[3669] | 122 | prn = QString("R%1").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
|
---|
[3659] | 123 | }
|
---|
| 124 | else {
|
---|
[3669] | 125 | prn = QString("G%1").arg(hlp.at(0).toInt(), 2, 10, QChar('0'));
|
---|
[3659] | 126 | }
|
---|
| 127 | }
|
---|
| 128 | QStringList lines; lines << line;
|
---|
| 129 | if (prn[0] == 'G') {
|
---|
| 130 | for (int ii = 1; ii < 8; ii++) {
|
---|
| 131 | lines << _stream->readLine();
|
---|
| 132 | }
|
---|
| 133 | eph = new t_ephGPS(version(), lines);
|
---|
| 134 | }
|
---|
| 135 | else if (prn[0] == 'R') {
|
---|
| 136 | for (int ii = 1; ii < 4; ii++) {
|
---|
| 137 | lines << _stream->readLine();
|
---|
| 138 | }
|
---|
| 139 | eph = new t_ephGlo(version(), lines);
|
---|
| 140 | }
|
---|
| 141 | else if (prn[0] == 'E') {
|
---|
| 142 | for (int ii = 1; ii < 8; ii++) {
|
---|
| 143 | lines << _stream->readLine();
|
---|
| 144 | }
|
---|
| 145 | eph = new t_ephGal(version(), lines);
|
---|
| 146 | }
|
---|
[3662] | 147 | if (eph && eph->ok()) {
|
---|
[3702] | 148 | // ColumnVector xc(4);
|
---|
| 149 | // ColumnVector vv(3);
|
---|
| 150 | // eph->position(eph->GPSweek(), eph->GPSweeks(), xc.data(), vv.data());
|
---|
| 151 | // cout << eph->prn().toAscii().data() << " " << xc.t();
|
---|
[3683] | 152 | return eph;
|
---|
[3659] | 153 | }
|
---|
| 154 | }
|
---|
| 155 |
|
---|
[3662] | 156 | delete eph;
|
---|
[3683] | 157 | return 0;
|
---|
[3659] | 158 | }
|
---|