| 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: RTCM3coDecoder
|
|---|
| 30 | *
|
|---|
| 31 | * Purpose: RTCM3 Clock Orbit Decoder
|
|---|
| 32 | *
|
|---|
| 33 | * Author: L. Mervart
|
|---|
| 34 | *
|
|---|
| 35 | * Created: 05-May-2008
|
|---|
| 36 | *
|
|---|
| 37 | * Changes:
|
|---|
| 38 | *
|
|---|
| 39 | * -----------------------------------------------------------------------*/
|
|---|
| 40 |
|
|---|
| 41 | #include <stdio.h>
|
|---|
| 42 | #include <math.h>
|
|---|
| 43 |
|
|---|
| 44 | #include "RTCM3coDecoder.h"
|
|---|
| 45 | #include "bncutils.h"
|
|---|
| 46 | #include "bncrinex.h"
|
|---|
| 47 | #include "bncapp.h"
|
|---|
| 48 |
|
|---|
| 49 | using namespace std;
|
|---|
| 50 |
|
|---|
| 51 | // Constructor
|
|---|
| 52 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 53 | RTCM3coDecoder::RTCM3coDecoder(const QString& staID) {
|
|---|
| 54 |
|
|---|
| 55 | _staID = staID;
|
|---|
| 56 |
|
|---|
| 57 | // File Output
|
|---|
| 58 | // -----------
|
|---|
| 59 | QSettings settings;
|
|---|
| 60 | QString path = settings.value("corrPath").toString();
|
|---|
| 61 | if (!path.isEmpty()) {
|
|---|
| 62 | expandEnvVar(path);
|
|---|
| 63 | if ( path.length() > 0 && path[path.length()-1] != QDir::separator() ) {
|
|---|
| 64 | path += QDir::separator();
|
|---|
| 65 | }
|
|---|
| 66 | _fileNameSkl = path + staID;
|
|---|
| 67 | }
|
|---|
| 68 | _out = 0;
|
|---|
| 69 |
|
|---|
| 70 | connect(this, SIGNAL(newCorrLine(QString, QString, long)),
|
|---|
| 71 | (bncApp*) qApp, SLOT(slotNewCorrLine(QString, QString, long)));
|
|---|
| 72 | }
|
|---|
| 73 |
|
|---|
| 74 | // Destructor
|
|---|
| 75 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 76 | RTCM3coDecoder::~RTCM3coDecoder() {
|
|---|
| 77 | delete _out;
|
|---|
| 78 | }
|
|---|
| 79 |
|
|---|
| 80 | // Reopen Output File
|
|---|
| 81 | ////////////////////////////////////////////////////////////////////////
|
|---|
| 82 | void RTCM3coDecoder::reopen() {
|
|---|
| 83 |
|
|---|
| 84 | if (!_fileNameSkl.isEmpty()) {
|
|---|
| 85 |
|
|---|
| 86 | QSettings settings;
|
|---|
| 87 |
|
|---|
| 88 | QDateTime datTim = currentDateAndTimeGPS();
|
|---|
| 89 |
|
|---|
| 90 | QString hlpStr = bncRinex::nextEpochStr(datTim,
|
|---|
| 91 | settings.value("corrIntr").toString());
|
|---|
| 92 |
|
|---|
| 93 | QString fileName = _fileNameSkl
|
|---|
| 94 | + QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0'))
|
|---|
| 95 | + hlpStr + datTim.toString(".yyC");
|
|---|
| 96 |
|
|---|
| 97 | if (_fileName == fileName) {
|
|---|
| 98 | return;
|
|---|
| 99 | }
|
|---|
| 100 | else {
|
|---|
| 101 | _fileName = fileName;
|
|---|
| 102 | }
|
|---|
| 103 |
|
|---|
| 104 | delete _out;
|
|---|
| 105 | _out = new ofstream( _fileName.toAscii().data() );
|
|---|
| 106 | }
|
|---|
| 107 | }
|
|---|
| 108 |
|
|---|
| 109 | //
|
|---|
| 110 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 111 | t_irc RTCM3coDecoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
|
|---|
| 112 |
|
|---|
| 113 | errmsg.clear();
|
|---|
| 114 |
|
|---|
| 115 | _buffer.append(QByteArray(buffer,bufLen));
|
|---|
| 116 |
|
|---|
| 117 | t_irc retCode = failure;
|
|---|
| 118 |
|
|---|
| 119 | while (true) {
|
|---|
| 120 |
|
|---|
| 121 | memset(&_co, 0, sizeof(_co));
|
|---|
| 122 |
|
|---|
| 123 | int bytesused = 0;
|
|---|
| 124 | GCOB_RETURN irc = GetClockOrbitBias(&_co, &_bias, _buffer.data(),
|
|---|
| 125 | _buffer.size(), &bytesused);
|
|---|
| 126 |
|
|---|
| 127 | // Not enough Data
|
|---|
| 128 | // ---------------
|
|---|
| 129 | if (irc == GCOBR_SHORTBUFFER ||
|
|---|
| 130 | irc == GCOBR_MESSAGEEXCEEDSBUFFER) {
|
|---|
| 131 | return retCode;
|
|---|
| 132 | }
|
|---|
| 133 |
|
|---|
| 134 | // Message correctly decoded
|
|---|
| 135 | // -------------------------
|
|---|
| 136 | else if ( (irc == GCOBR_OK || irc == GCOBR_MESSAGEFOLLOWS) &&
|
|---|
| 137 | bytesused > 0) {
|
|---|
| 138 | reopen();
|
|---|
| 139 |
|
|---|
| 140 | int GPSweek;
|
|---|
| 141 | double GPSweeks;
|
|---|
| 142 | currentGPSWeeks(GPSweek, GPSweeks);
|
|---|
| 143 |
|
|---|
| 144 | for (int kk = 0; kk < _co.epochSize; kk++) {
|
|---|
| 145 | _epochList.push_back(_co.epochGPS[kk]); /* Weber, for latency */
|
|---|
| 146 | }
|
|---|
| 147 |
|
|---|
| 148 | if (_co.NumberOfGPSSat > 0) {
|
|---|
| 149 | if (GPSweeks > _co.GPSEpochTime + 86400.0) {
|
|---|
| 150 | GPSweek += 1;
|
|---|
| 151 | }
|
|---|
| 152 | else if (GPSweeks < _co.GPSEpochTime - 86400.0) {
|
|---|
| 153 | GPSweek -= 1;
|
|---|
| 154 | }
|
|---|
| 155 | GPSweeks = _co.GPSEpochTime;
|
|---|
| 156 | }
|
|---|
| 157 | else {
|
|---|
| 158 | double GPSdaysec = fmod(GPSweeks, 86400.0);
|
|---|
| 159 | int weekDay = int((GPSweeks - GPSdaysec) / 86400.0);
|
|---|
| 160 | if (GPSdaysec > _co.GLONASSEpochTime + 3600.0) {
|
|---|
| 161 | weekDay += 1;
|
|---|
| 162 | if (weekDay > 6) {
|
|---|
| 163 | weekDay = 0;
|
|---|
| 164 | GPSweek += 1;
|
|---|
| 165 | }
|
|---|
| 166 | }
|
|---|
| 167 | else if (GPSdaysec < _co.GLONASSEpochTime - 3600.0) {
|
|---|
| 168 | weekDay -= 1;
|
|---|
| 169 | if (weekDay < 0) {
|
|---|
| 170 | weekDay = 6;
|
|---|
| 171 | GPSweek -= 1;
|
|---|
| 172 | }
|
|---|
| 173 | }
|
|---|
| 174 | GPSweeks = weekDay * 86400.0 + _co.GLONASSEpochTime;
|
|---|
| 175 | }
|
|---|
| 176 |
|
|---|
| 177 | for(int ii = 0; ii < _co.NumberOfGPSSat; ++ii) {
|
|---|
| 178 | QString line;
|
|---|
| 179 | line.sprintf("%d %.1f G%2.2d %3d %8.3f %8.3f %8.3f %8.3f",
|
|---|
| 180 | GPSweek, GPSweeks, _co.Sat[ii].ID, _co.Sat[ii].IOD,
|
|---|
| 181 | _co.Sat[ii].Clock.DeltaA0,
|
|---|
| 182 | _co.Sat[ii].Orbit.DeltaRadial,
|
|---|
| 183 | _co.Sat[ii].Orbit.DeltaAlongTrack,
|
|---|
| 184 | _co.Sat[ii].Orbit.DeltaCrossTrack);
|
|---|
| 185 | long coTime = GPSweek * 7*24*3600 + long(floor(GPSweeks+0.5));
|
|---|
| 186 | printLine(line, coTime);
|
|---|
| 187 | }
|
|---|
| 188 | for(int ii = CLOCKORBIT_NUMGPS;
|
|---|
| 189 | ii < CLOCKORBIT_NUMGPS + _co.NumberOfGLONASSSat; ++ii) {
|
|---|
| 190 | QString line;
|
|---|
| 191 | line.sprintf("%d %.1f R%2.2d %3d %8.3f %8.3f %8.3f %8.3f",
|
|---|
| 192 | GPSweek, GPSweeks, _co.Sat[ii].ID, _co.Sat[ii].IOD,
|
|---|
| 193 | _co.Sat[ii].Clock.DeltaA0,
|
|---|
| 194 | _co.Sat[ii].Orbit.DeltaRadial,
|
|---|
| 195 | _co.Sat[ii].Orbit.DeltaAlongTrack,
|
|---|
| 196 | _co.Sat[ii].Orbit.DeltaCrossTrack);
|
|---|
| 197 | long coTime = GPSweek * 7*24*3600 + long(floor(GPSweeks+0.5));
|
|---|
| 198 | printLine(line, coTime);
|
|---|
| 199 | }
|
|---|
| 200 | _buffer = _buffer.mid(bytesused);
|
|---|
| 201 | retCode = success;
|
|---|
| 202 | }
|
|---|
| 203 |
|
|---|
| 204 | // All other Cases
|
|---|
| 205 | // ---------------
|
|---|
| 206 | else {
|
|---|
| 207 | _buffer = _buffer.mid(1);
|
|---|
| 208 | }
|
|---|
| 209 | }
|
|---|
| 210 | }
|
|---|
| 211 |
|
|---|
| 212 | //
|
|---|
| 213 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 214 | void RTCM3coDecoder::printLine(const QString& line, long coTime) {
|
|---|
| 215 | if (_out) {
|
|---|
| 216 | *_out << line.toAscii().data() << endl;
|
|---|
| 217 | _out->flush();
|
|---|
| 218 | }
|
|---|
| 219 |
|
|---|
| 220 | emit newCorrLine(line, _staID, coTime);
|
|---|
| 221 | }
|
|---|