[297] | 1 | // Part of BNC, a utility for retrieving decoding and
|
---|
[464] | 2 | // converting GNSS data streams from NTRIP broadcasters.
|
---|
[297] | 3 | //
|
---|
[464] | 4 | // Copyright (C) 2007
|
---|
[297] | 5 | // German Federal Agency for Cartography and Geodesy (BKG)
|
---|
| 6 | // http://www.bkg.bund.de
|
---|
[464] | 7 | // Czech Technical University Prague, Department of Geodesy
|
---|
[297] | 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.
|
---|
[296] | 24 |
|
---|
| 25 | /* -------------------------------------------------------------------------
|
---|
| 26 | * BKG NTRIP Client
|
---|
| 27 | * -------------------------------------------------------------------------
|
---|
| 28 | *
|
---|
| 29 | * Class: RTCM3Decoder
|
---|
| 30 | *
|
---|
| 31 | * Purpose: RTCM3 Decoder
|
---|
| 32 | *
|
---|
| 33 | * Author: L. Mervart
|
---|
| 34 | *
|
---|
| 35 | * Created: 24-Aug-2006
|
---|
| 36 | *
|
---|
| 37 | * Changes:
|
---|
| 38 | *
|
---|
| 39 | * -----------------------------------------------------------------------*/
|
---|
| 40 |
|
---|
| 41 | #include <iostream>
|
---|
[1807] | 42 | #include <iomanip>
|
---|
| 43 | #include <sstream>
|
---|
[296] | 44 | #include <math.h>
|
---|
[585] | 45 | #include <string.h>
|
---|
[296] | 46 |
|
---|
| 47 | #include "RTCM3Decoder.h"
|
---|
[1807] | 48 | #include "../RTCM/rtcm_utils.h"
|
---|
[296] | 49 | #include "bncconst.h"
|
---|
[5070] | 50 | #include "bnccore.h"
|
---|
[1535] | 51 | #include "bncutils.h"
|
---|
| 52 | #include "bncsettings.h"
|
---|
[296] | 53 |
|
---|
| 54 | using namespace std;
|
---|
| 55 |
|
---|
| 56 | #ifndef isinf
|
---|
| 57 | # define isinf(x) 0
|
---|
| 58 | #endif
|
---|
| 59 |
|
---|
[320] | 60 | // Error Handling
|
---|
| 61 | ////////////////////////////////////////////////////////////////////////////
|
---|
[504] | 62 | void RTCM3Error(const char*, ...) {
|
---|
[505] | 63 | }
|
---|
[320] | 64 |
|
---|
[296] | 65 | // Constructor
|
---|
| 66 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2527] | 67 | RTCM3Decoder::RTCM3Decoder(const QString& staID, bncRawFile* rawFile) :
|
---|
[2387] | 68 | GPSDecoder() {
|
---|
[505] | 69 |
|
---|
[2527] | 70 | _staID = staID;
|
---|
| 71 | _rawFile = rawFile;
|
---|
[2387] | 72 |
|
---|
[1535] | 73 | bncSettings settings;
|
---|
[1580] | 74 | _checkMountPoint = settings.value("miscMount").toString();
|
---|
[1022] | 75 |
|
---|
[939] | 76 | connect(this, SIGNAL(newGPSEph(gpsephemeris*)),
|
---|
[5068] | 77 | BNC_CORE, SLOT(slotNewGPSEph(gpsephemeris*)));
|
---|
[5206] | 78 | connect(this, SIGNAL(newGlonassEph(glonassephemeris*, const QString&)),
|
---|
| 79 | BNC_CORE, SLOT(slotNewGlonassEph(glonassephemeris*, const QString&)));
|
---|
[2770] | 80 | connect(this, SIGNAL(newGalileoEph(galileoephemeris*)),
|
---|
[5068] | 81 | BNC_CORE, SLOT(slotNewGalileoEph(galileoephemeris*)));
|
---|
[939] | 82 |
|
---|
[1021] | 83 | // Mode can be either observations or corrections
|
---|
| 84 | // ----------------------------------------------
|
---|
| 85 | _mode = unknown;
|
---|
[1807] | 86 |
|
---|
| 87 | // Antenna position (used for decoding of message 1003)
|
---|
| 88 | // ----------------------------------------------------
|
---|
| 89 | _antXYZ[0] = _antXYZ[1] = _antXYZ[2] = 0;
|
---|
| 90 |
|
---|
[296] | 91 | }
|
---|
| 92 |
|
---|
| 93 | // Destructor
|
---|
| 94 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 95 | RTCM3Decoder::~RTCM3Decoder() {
|
---|
[3001] | 96 | QMapIterator<QByteArray, RTCM3coDecoder*> it(_coDecoders);
|
---|
| 97 | while (it.hasNext()) {
|
---|
[3008] | 98 | it.next();
|
---|
| 99 | delete it.value();
|
---|
[3001] | 100 | }
|
---|
[296] | 101 | }
|
---|
| 102 |
|
---|
| 103 | //
|
---|
| 104 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1218] | 105 | t_irc RTCM3Decoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
|
---|
[508] | 106 |
|
---|
[1218] | 107 | errmsg.clear();
|
---|
| 108 |
|
---|
[913] | 109 | bool decoded = false;
|
---|
| 110 |
|
---|
[3001] | 111 | // If read from file, mode is always uknown
|
---|
| 112 | // ----------------------------------------
|
---|
| 113 | if (_rawFile) {
|
---|
| 114 | _mode = unknown;
|
---|
| 115 | _staID = _rawFile->staID();
|
---|
[2551] | 116 | }
|
---|
| 117 |
|
---|
[880] | 118 | // Try to decode Clock and Orbit Corrections
|
---|
| 119 | // -----------------------------------------
|
---|
[1021] | 120 | if (_mode == unknown || _mode == corrections) {
|
---|
[3002] | 121 |
|
---|
| 122 | // Find the corresponding coDecoder
|
---|
| 123 | // --------------------------------
|
---|
| 124 | if (!_coDecoders.contains(_staID.toAscii())) {
|
---|
| 125 | _coDecoders[_staID.toAscii()] = new RTCM3coDecoder(_staID);
|
---|
| 126 | }
|
---|
| 127 | RTCM3coDecoder* coDecoder = _coDecoders[_staID.toAscii()];
|
---|
| 128 |
|
---|
[3001] | 129 | if ( coDecoder->Decode(buffer, bufLen, errmsg) == success ) {
|
---|
[1021] | 130 | decoded = true;
|
---|
[3001] | 131 | if (!_rawFile && _mode == unknown) {
|
---|
| 132 | _mode = corrections;
|
---|
[1021] | 133 | }
|
---|
| 134 | }
|
---|
[913] | 135 | }
|
---|
[880] | 136 |
|
---|
[3001] | 137 | // Find the corresponding parser, initialize a new parser if necessary
|
---|
| 138 | // -------------------------------------------------------------------
|
---|
| 139 | bool newParser = !_parsers.contains(_staID.toAscii());
|
---|
| 140 | RTCM3ParserData& parser = _parsers[_staID.toAscii()];
|
---|
| 141 | if (newParser) {
|
---|
| 142 | memset(&parser, 0, sizeof(parser));
|
---|
| 143 | parser.rinex3 = 0;
|
---|
| 144 | double secGPS;
|
---|
| 145 | currentGPSWeeks(parser.GPSWeek, secGPS);
|
---|
| 146 | parser.GPSTOW = int(secGPS);
|
---|
[2527] | 147 | }
|
---|
| 148 |
|
---|
[2672] | 149 | // Get Glonass Slot Numbers from Global Array
|
---|
| 150 | // ------------------------------------------
|
---|
[5068] | 151 | BNC_CORE->getGlonassSlotNums(parser.GLOFreq);
|
---|
[2672] | 152 |
|
---|
[880] | 153 | // Remaining part decodes the Observations
|
---|
| 154 | // ---------------------------------------
|
---|
[2676] | 155 | if (_mode == unknown || _mode == observations ||
|
---|
| 156 | _checkMountPoint == _staID || _checkMountPoint == "ALL") {
|
---|
[1127] | 157 |
|
---|
[2677] | 158 | for (int iByte = 0; iByte < bufLen; iByte++) {
|
---|
[1127] | 159 |
|
---|
[2677] | 160 | parser.Message[parser.MessageSize++] = buffer[iByte];
|
---|
| 161 |
|
---|
[2527] | 162 | if (parser.MessageSize >= parser.NeedBytes) {
|
---|
[1185] | 163 |
|
---|
[2676] | 164 | while (int rr = RTCM3Parser(&parser)) {
|
---|
[1130] | 165 |
|
---|
[1239] | 166 | // RTCMv3 message types
|
---|
| 167 | // --------------------
|
---|
[2527] | 168 | _typeList.push_back(parser.blocktype);
|
---|
[1185] | 169 |
|
---|
[1239] | 170 | // RTCMv3 antenna descriptor
|
---|
| 171 | // -------------------------
|
---|
[2676] | 172 | if (rr == 1007 || rr == 1008 || rr == 1033) {
|
---|
| 173 | _antType.push_back(parser.antenna);
|
---|
[1239] | 174 | }
|
---|
[1185] | 175 |
|
---|
[1239] | 176 | // RTCMv3 antenna XYZ
|
---|
| 177 | // ------------------
|
---|
[2676] | 178 | else if (rr == 1005) {
|
---|
| 179 | _antList.push_back(t_antInfo());
|
---|
| 180 | _antList.back().type = t_antInfo::ARP;
|
---|
| 181 | _antList.back().xx = parser.antX * 1e-4;
|
---|
| 182 | _antList.back().yy = parser.antY * 1e-4;
|
---|
| 183 | _antList.back().zz = parser.antZ * 1e-4;
|
---|
| 184 | _antList.back().message = rr;
|
---|
[1807] | 185 |
|
---|
[2676] | 186 | // Remember station position for 1003 message decoding
|
---|
| 187 | _antXYZ[0] = parser.antX * 1e-4;
|
---|
| 188 | _antXYZ[1] = parser.antY * 1e-4;
|
---|
| 189 | _antXYZ[2] = parser.antZ * 1e-4;
|
---|
[1239] | 190 | }
|
---|
[1033] | 191 |
|
---|
[1239] | 192 | // RTCMv3 antenna XYZ-H
|
---|
| 193 | // --------------------
|
---|
[2676] | 194 | else if(rr == 1006) {
|
---|
| 195 | _antList.push_back(t_antInfo());
|
---|
| 196 | _antList.back().type = t_antInfo::ARP;
|
---|
| 197 | _antList.back().xx = parser.antX * 1e-4;
|
---|
| 198 | _antList.back().yy = parser.antY * 1e-4;
|
---|
| 199 | _antList.back().zz = parser.antZ * 1e-4;
|
---|
| 200 | _antList.back().height = parser.antH * 1e-4;
|
---|
| 201 | _antList.back().height_f = true;
|
---|
| 202 | _antList.back().message = rr;
|
---|
[1807] | 203 |
|
---|
[2676] | 204 | // Remember station position for 1003 message decoding
|
---|
| 205 | _antXYZ[0] = parser.antX * 1e-4;
|
---|
| 206 | _antXYZ[1] = parser.antY * 1e-4;
|
---|
| 207 | _antXYZ[2] = parser.antZ * 1e-4;
|
---|
[1239] | 208 | }
|
---|
| 209 |
|
---|
[1021] | 210 | // GNSS Observations
|
---|
| 211 | // -----------------
|
---|
[1239] | 212 | else if (rr == 1 || rr == 2) {
|
---|
[1127] | 213 | decoded = true;
|
---|
[1021] | 214 |
|
---|
[2527] | 215 | if (!parser.init) {
|
---|
| 216 | HandleHeader(&parser);
|
---|
| 217 | parser.init = 1;
|
---|
[1021] | 218 | }
|
---|
| 219 |
|
---|
| 220 | if (rr == 2) {
|
---|
[2676] | 221 | emit(newMessage( (_staID +
|
---|
| 222 | ": No valid RINEX! All values are modulo 299792.458!").toAscii(),
|
---|
| 223 | true));
|
---|
[1021] | 224 | }
|
---|
[2683] | 225 |
|
---|
| 226 | gnssdata& gnssData = parser.Data;
|
---|
[1021] | 227 |
|
---|
[2683] | 228 | for (int iSat = 0; iSat < gnssData.numsats; iSat++) {
|
---|
[2677] | 229 |
|
---|
[2711] | 230 | t_obs obs;
|
---|
| 231 | int satID = gnssData.satellites[iSat];
|
---|
[2674] | 232 |
|
---|
| 233 | // GPS
|
---|
| 234 | // ---
|
---|
| 235 | if (satID >= PRN_GPS_START && satID <= PRN_GPS_END) {
|
---|
[2711] | 236 | obs.satSys = 'G';
|
---|
| 237 | obs.satNum = satID;
|
---|
[366] | 238 | }
|
---|
[2674] | 239 |
|
---|
| 240 | // Glonass
|
---|
| 241 | // -------
|
---|
| 242 | else if (satID >= PRN_GLONASS_START && satID <= PRN_GLONASS_END) {
|
---|
[2711] | 243 | obs.satSys = 'R';
|
---|
| 244 | obs.satNum = satID - PRN_GLONASS_START + 1;
|
---|
| 245 | if (obs.satNum <= PRN_GLONASS_NUM &&
|
---|
| 246 | parser.GLOFreq[obs.satNum-1] != 0) {
|
---|
| 247 | obs.slotNum = parser.GLOFreq[obs.satNum-1] - 100;
|
---|
[2669] | 248 | }
|
---|
| 249 | else {
|
---|
[2711] | 250 | continue;
|
---|
[2669] | 251 | }
|
---|
[1021] | 252 | }
|
---|
[2674] | 253 |
|
---|
| 254 | // Galileo
|
---|
| 255 | // -------
|
---|
| 256 | else if (satID >= PRN_GALILEO_START && satID <= PRN_GALILEO_END) {
|
---|
[2711] | 257 | obs.satSys = 'E';
|
---|
| 258 | obs.satNum = satID - PRN_GALILEO_START + 1;
|
---|
[2676] | 259 | }
|
---|
[2674] | 260 |
|
---|
[4368] | 261 | // SBAS
|
---|
[2674] | 262 | // ----
|
---|
[4368] | 263 | else if (satID >= PRN_SBAS_START && satID <= PRN_SBAS_END) {
|
---|
[2711] | 264 | obs.satSys = 'S';
|
---|
[4368] | 265 | obs.satNum = satID - PRN_SBAS_START + 20;
|
---|
[1021] | 266 | }
|
---|
[2669] | 267 |
|
---|
[2674] | 268 | // Giove A and B
|
---|
| 269 | // -------------
|
---|
| 270 | else if (satID >= PRN_GIOVE_START && satID <= PRN_GIOVE_END) {
|
---|
[2711] | 271 | obs.satSys = 'E';
|
---|
| 272 | obs.satNum = satID - PRN_GIOVE_START + PRN_GIOVE_OFFSET;
|
---|
[2676] | 273 | }
|
---|
[2674] | 274 |
|
---|
[4368] | 275 | // QZSS
|
---|
| 276 | // -------------
|
---|
| 277 | else if (satID >= PRN_QZSS_START && satID <= PRN_QZSS_END) {
|
---|
| 278 | obs.satSys = 'J';
|
---|
| 279 | obs.satNum = satID - PRN_QZSS_START + 1;
|
---|
| 280 | }
|
---|
| 281 |
|
---|
| 282 | // COMPASS
|
---|
| 283 | // -------------
|
---|
| 284 | else if (satID >= PRN_COMPASS_START && satID <= PRN_COMPASS_END) {
|
---|
| 285 | obs.satSys = 'C';
|
---|
| 286 | obs.satNum = satID - PRN_COMPASS_START + 1;
|
---|
| 287 | }
|
---|
| 288 |
|
---|
[2674] | 289 | // Unknown System
|
---|
| 290 | // --------------
|
---|
| 291 | else {
|
---|
[2669] | 292 | continue;
|
---|
| 293 | }
|
---|
| 294 |
|
---|
[2711] | 295 | obs.GPSWeek = gnssData.week;
|
---|
| 296 | obs.GPSWeeks = gnssData.timeofweek / 1000.0;
|
---|
[1807] | 297 |
|
---|
[2711] | 298 | QString prn = QString("%1%2").arg(obs.satSys)
|
---|
| 299 | .arg(obs.satNum, 2, 10, QChar('0'));
|
---|
[2687] | 300 |
|
---|
| 301 | // Handle loss-of-lock flags
|
---|
| 302 | // -------------------------
|
---|
| 303 | const int maxSlipCnt = 100;
|
---|
| 304 | if (!_slip_cnt_L1.contains(prn)) {
|
---|
| 305 | _slip_cnt_L1[prn] = 0;
|
---|
| 306 | _slip_cnt_L2[prn] = 0;
|
---|
| 307 | _slip_cnt_L5[prn] = 0;
|
---|
| 308 | }
|
---|
| 309 | if (GNSSDF2_LOCKLOSSL1 & gnssData.dataflags2[iSat]) {
|
---|
| 310 | if (_slip_cnt_L1[prn] < maxSlipCnt) {
|
---|
| 311 | ++_slip_cnt_L1[prn];
|
---|
| 312 | }
|
---|
| 313 | else {
|
---|
| 314 | _slip_cnt_L1[prn] = 1;
|
---|
| 315 | }
|
---|
[2711] | 316 | obs.slip_cnt_L1 = _slip_cnt_L1[prn];
|
---|
[2687] | 317 | }
|
---|
| 318 | if (GNSSDF2_LOCKLOSSL2 & gnssData.dataflags2[iSat]) {
|
---|
| 319 | if (_slip_cnt_L2[prn] < maxSlipCnt) {
|
---|
| 320 | ++_slip_cnt_L2[prn];
|
---|
| 321 | }
|
---|
| 322 | else {
|
---|
| 323 | _slip_cnt_L2[prn] = 1;
|
---|
| 324 | }
|
---|
[2711] | 325 | obs.slip_cnt_L2 = _slip_cnt_L2[prn];
|
---|
[2687] | 326 | }
|
---|
| 327 | if (GNSSDF2_LOCKLOSSL5 & gnssData.dataflags2[iSat]) {
|
---|
| 328 | if (_slip_cnt_L5[prn] < maxSlipCnt) {
|
---|
| 329 | ++_slip_cnt_L5[prn];
|
---|
| 330 | }
|
---|
| 331 | else {
|
---|
| 332 | _slip_cnt_L5[prn] = 1;
|
---|
| 333 | }
|
---|
[2711] | 334 | obs.slip_cnt_L5 = _slip_cnt_L5[prn];
|
---|
[2687] | 335 | }
|
---|
| 336 |
|
---|
[4389] | 337 | obs._dataflags = gnssData.dataflags[iSat];
|
---|
| 338 | obs._dataflags2 = gnssData.dataflags2[iSat];
|
---|
| 339 |
|
---|
[2676] | 340 | // Loop over all data types
|
---|
| 341 | // ------------------------
|
---|
[2684] | 342 | for (int iEntry = 0; iEntry < GNSSENTRY_NUMBER; ++iEntry) {
|
---|
[4389] | 343 | obs._measdata[iEntry] = gnssData.measdata[iSat][iEntry];
|
---|
| 344 | obs._codetype[iEntry] = gnssData.codetype[iSat][iEntry];
|
---|
[511] | 345 | }
|
---|
[2711] | 346 | _obsList.push_back(obs);
|
---|
[366] | 347 | }
|
---|
[296] | 348 | }
|
---|
[1021] | 349 |
|
---|
| 350 | // GPS Ephemeris
|
---|
| 351 | // -------------
|
---|
| 352 | else if (rr == 1019) {
|
---|
| 353 | decoded = true;
|
---|
[2676] | 354 | emit newGPSEph(new gpsephemeris(parser.ephemerisGPS));
|
---|
[1021] | 355 | }
|
---|
| 356 |
|
---|
| 357 | // GLONASS Ephemeris
|
---|
| 358 | // -----------------
|
---|
[5260] | 359 | else if (rr == 1020 && parser.ephemerisGLONASS.almanac_number >= 1
|
---|
| 360 | && parser.ephemerisGLONASS.almanac_number <= PRN_GLONASS_NUM) {
|
---|
[1021] | 361 | decoded = true;
|
---|
[5206] | 362 | emit newGlonassEph(new glonassephemeris(parser.ephemerisGLONASS), _staID);
|
---|
[1021] | 363 | }
|
---|
[2770] | 364 |
|
---|
| 365 | // Galileo Ephemeris
|
---|
| 366 | // -----------------
|
---|
[5545] | 367 | else if (rr == 1045 || rr == 1046) {
|
---|
[2770] | 368 | decoded = true;
|
---|
| 369 | emit newGalileoEph(new galileoephemeris(parser.ephemerisGALILEO));
|
---|
| 370 | }
|
---|
[296] | 371 | }
|
---|
| 372 | }
|
---|
| 373 | }
|
---|
[2527] | 374 | if (!_rawFile && _mode == unknown && decoded) {
|
---|
[2387] | 375 | _mode = observations;
|
---|
[1021] | 376 | }
|
---|
[296] | 377 | }
|
---|
[1021] | 378 |
|
---|
| 379 | if (decoded) {
|
---|
[5068] | 380 | BNC_CORE->storeGlonassSlotNums(parser.GLOFreq);
|
---|
[1021] | 381 | return success;
|
---|
[658] | 382 | }
|
---|
| 383 | else {
|
---|
[1021] | 384 | return failure;
|
---|
[658] | 385 | }
|
---|
[296] | 386 | }
|
---|
[1807] | 387 |
|
---|
[3001] | 388 | // Time of Corrections
|
---|
| 389 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 390 | int RTCM3Decoder::corrGPSEpochTime() const {
|
---|
| 391 | if (_mode == corrections && _coDecoders.size() > 0) {
|
---|
| 392 | return _coDecoders.begin().value()->corrGPSEpochTime();
|
---|
| 393 | }
|
---|
| 394 | else {
|
---|
| 395 | return -1;
|
---|
| 396 | }
|
---|
| 397 | }
|
---|