source: ntrip/trunk/BNC/RTCM3/RTCM3Decoder.cpp@ 2705

Last change on this file since 2705 was 2702, checked in by mervart, 15 years ago
File size: 15.3 KB
RevLine 
[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"
[511]50#include "bncapp.h"
[1535]51#include "bncutils.h"
52#include "bncsettings.h"
[296]53
54using namespace std;
55
56#ifndef isinf
57# define isinf(x) 0
58#endif
59
[320]60// Error Handling
61////////////////////////////////////////////////////////////////////////////
[504]62void RTCM3Error(const char*, ...) {
[505]63}
[320]64
[296]65// Constructor
66////////////////////////////////////////////////////////////////////////////
[2527]67RTCM3Decoder::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*)),
[2585]77 (bncApp*) qApp, SLOT(slotNewGPSEph(gpsephemeris*)));
[939]78 connect(this, SIGNAL(newGlonassEph(glonassephemeris*)),
[2585]79 (bncApp*) qApp, SLOT(slotNewGlonassEph(glonassephemeris*)));
[939]80
[880]81 // Sub-Decoder for Clock and Orbit Corrections
82 // -------------------------------------------
[970]83 _coDecoder = new RTCM3coDecoder(staID);
[1021]84
85 // Mode can be either observations or corrections
86 // ----------------------------------------------
87 _mode = unknown;
[1807]88
89 // Antenna position (used for decoding of message 1003)
90 // ----------------------------------------------------
91 _antXYZ[0] = _antXYZ[1] = _antXYZ[2] = 0;
92
[296]93}
94
95// Destructor
96////////////////////////////////////////////////////////////////////////////
97RTCM3Decoder::~RTCM3Decoder() {
[880]98 delete _coDecoder;
[296]99}
100
101//
102////////////////////////////////////////////////////////////////////////////
[1218]103t_irc RTCM3Decoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
[508]104
[1218]105 errmsg.clear();
106
[913]107 bool decoded = false;
108
[2551]109 // If read from file, we set the mode according to staID
110 // -----------------------------------------------------
111 if (!_staID_corrections.isEmpty() && _rawFile) {
112 if (_rawFile->staID() == _staID_corrections) {
113 _mode = corrections;
114 }
115 else {
116 _mode = observations;
117 }
118 }
119
[880]120 // Try to decode Clock and Orbit Corrections
121 // -----------------------------------------
[1021]122 if (_mode == unknown || _mode == corrections) {
[1218]123 if ( _coDecoder->Decode(buffer, bufLen, errmsg) == success ) {
[1021]124 decoded = true;
[2551]125 if (_mode == unknown) {
126 if (_rawFile) {
127 _staID_corrections = _rawFile->staID();
[2676]128 }
129 else {
[2551]130 _mode = corrections;
[2676]131 }
[1021]132 }
133 }
[913]134 }
[880]135
[2527]136 // Find the corresponding parser
137 // -----------------------------
138 QByteArray staID("default");
139 if (_rawFile) {
140 staID = _rawFile->staID();
141 }
142
143 bool newParser = !_parsers.contains(staID);
144
145 RTCM3ParserData& parser = _parsers[staID];
146
[2672]147 // Get Glonass Slot Numbers from Global Array
148 // ------------------------------------------
149 bncApp* app = (bncApp*) qApp;
150 app->getGlonassSlotNums(parser.GLOFreq);
151
[2527]152 // Initialize a new parser
153 // -----------------------
154 if (newParser) {
[2676]155 memset(&parser, 0, sizeof(parser));
[2527]156 parser.rinex3 = 0;
157 double secGPS;
158 currentGPSWeeks(parser.GPSWeek, secGPS);
159 parser.GPSTOW = int(secGPS);
160 }
161
[880]162 // Remaining part decodes the Observations
163 // ---------------------------------------
[2676]164 if (_mode == unknown || _mode == observations ||
165 _checkMountPoint == _staID || _checkMountPoint == "ALL") {
[1127]166
[2677]167 for (int iByte = 0; iByte < bufLen; iByte++) {
[1127]168
[2677]169 parser.Message[parser.MessageSize++] = buffer[iByte];
170
[2527]171 if (parser.MessageSize >= parser.NeedBytes) {
[1185]172
[2676]173 while (int rr = RTCM3Parser(&parser)) {
[1130]174
[1239]175 // RTCMv3 message types
176 // --------------------
[2527]177 _typeList.push_back(parser.blocktype);
[1185]178
[1239]179 // RTCMv3 antenna descriptor
180 // -------------------------
[2676]181 if (rr == 1007 || rr == 1008 || rr == 1033) {
182 _antType.push_back(parser.antenna);
[1239]183 }
[1185]184
[1239]185 // RTCMv3 antenna XYZ
186 // ------------------
[2676]187 else if (rr == 1005) {
188 _antList.push_back(t_antInfo());
189 _antList.back().type = t_antInfo::ARP;
190 _antList.back().xx = parser.antX * 1e-4;
191 _antList.back().yy = parser.antY * 1e-4;
192 _antList.back().zz = parser.antZ * 1e-4;
193 _antList.back().message = rr;
[1807]194
[2676]195 // Remember station position for 1003 message decoding
196 _antXYZ[0] = parser.antX * 1e-4;
197 _antXYZ[1] = parser.antY * 1e-4;
198 _antXYZ[2] = parser.antZ * 1e-4;
[1239]199 }
[1033]200
[1239]201 // RTCMv3 antenna XYZ-H
202 // --------------------
[2676]203 else if(rr == 1006) {
204 _antList.push_back(t_antInfo());
205 _antList.back().type = t_antInfo::ARP;
206 _antList.back().xx = parser.antX * 1e-4;
207 _antList.back().yy = parser.antY * 1e-4;
208 _antList.back().zz = parser.antZ * 1e-4;
209 _antList.back().height = parser.antH * 1e-4;
210 _antList.back().height_f = true;
211 _antList.back().message = rr;
[1807]212
[2676]213 // Remember station position for 1003 message decoding
214 _antXYZ[0] = parser.antX * 1e-4;
215 _antXYZ[1] = parser.antY * 1e-4;
216 _antXYZ[2] = parser.antZ * 1e-4;
[1239]217 }
218
[1021]219 // GNSS Observations
220 // -----------------
[1239]221 else if (rr == 1 || rr == 2) {
[1127]222 decoded = true;
[1021]223
[2527]224 if (!parser.init) {
225 HandleHeader(&parser);
226 parser.init = 1;
[1021]227 }
228
229 if (rr == 2) {
[2676]230 emit(newMessage( (_staID +
231 ": No valid RINEX! All values are modulo 299792.458!").toAscii(),
232 true));
[1021]233 }
[2683]234
235 gnssdata& gnssData = parser.Data;
[1021]236
[2683]237 for (int iSat = 0; iSat < gnssData.numsats; iSat++) {
[2677]238
[2674]239 p_obs obs = new t_obs();
[2683]240 int satID = gnssData.satellites[iSat];
[2674]241
242 // GPS
243 // ---
244 if (satID >= PRN_GPS_START && satID <= PRN_GPS_END) {
[1021]245 obs->_o.satSys = 'G';
[2674]246 obs->_o.satNum = satID;
[366]247 }
[2674]248
249 // Glonass
250 // -------
251 else if (satID >= PRN_GLONASS_START && satID <= PRN_GLONASS_END) {
[1021]252 obs->_o.satSys = 'R';
[2674]253 obs->_o.satNum = satID - PRN_GLONASS_START + 1;
[2669]254 if (obs->_o.satNum <= PRN_GLONASS_NUM &&
255 parser.GLOFreq[obs->_o.satNum-1] != 0) {
256 obs->_o.slotNum = parser.GLOFreq[obs->_o.satNum-1] - 100;
257 }
258 else {
259 delete obs;
260 obs = 0;
261 }
[1021]262 }
[2674]263
264 // Galileo
265 // -------
266 else if (satID >= PRN_GALILEO_START && satID <= PRN_GALILEO_END) {
267 obs->_o.satSys = 'E';
268 obs->_o.satNum = satID - PRN_GALILEO_START + 1;
[2676]269 }
[2674]270
271 // WAAS
272 // ----
273 else if (satID >= PRN_WAAS_START && satID <= PRN_WAAS_END) {
[1021]274 obs->_o.satSys = 'S';
[2674]275 obs->_o.satNum = satID - PRN_WAAS_START + 20;
[1021]276 }
[2669]277
[2674]278 // Giove A and B
279 // -------------
280 else if (satID >= PRN_GIOVE_START && satID <= PRN_GIOVE_END) {
281 obs->_o.satSys = 'E';
[2676]282 obs->_o.satNum = satID - PRN_GIOVE_START + PRN_GIOVE_OFFSET;
283 }
[2674]284
285 // Unknown System
286 // --------------
287 else {
288 delete obs;
289 obs = 0;
[2676]290 }
[2674]291
[2669]292 if (obs) {
293 _obsList.push_back(obs);
294 }
295 else {
296 continue;
297 }
298
[2683]299 obs->_o.GPSWeek = gnssData.week;
300 obs->_o.GPSWeeks = gnssData.timeofweek / 1000.0;
[1807]301
[2687]302 QString prn = QString("%1%2").arg(obs->_o.satSys)
303 .arg(obs->_o.satNum, 2, 10, QChar('0'));
304
305 // Handle loss-of-lock flags
306 // -------------------------
307 const int maxSlipCnt = 100;
308 if (!_slip_cnt_L1.contains(prn)) {
309 _slip_cnt_L1[prn] = 0;
310 _slip_cnt_L2[prn] = 0;
311 _slip_cnt_L5[prn] = 0;
312 }
313 if (GNSSDF2_LOCKLOSSL1 & gnssData.dataflags2[iSat]) {
314 if (_slip_cnt_L1[prn] < maxSlipCnt) {
315 ++_slip_cnt_L1[prn];
316 }
317 else {
318 _slip_cnt_L1[prn] = 1;
319 }
320 obs->_o.slip_cnt_L1 = _slip_cnt_L1[prn];
321 }
322 if (GNSSDF2_LOCKLOSSL2 & gnssData.dataflags2[iSat]) {
323 if (_slip_cnt_L2[prn] < maxSlipCnt) {
324 ++_slip_cnt_L2[prn];
325 }
326 else {
327 _slip_cnt_L2[prn] = 1;
328 }
329 obs->_o.slip_cnt_L2 = _slip_cnt_L2[prn];
330 }
331 if (GNSSDF2_LOCKLOSSL5 & gnssData.dataflags2[iSat]) {
332 if (_slip_cnt_L5[prn] < maxSlipCnt) {
333 ++_slip_cnt_L5[prn];
334 }
335 else {
336 _slip_cnt_L5[prn] = 1;
337 }
338 obs->_o.slip_cnt_L5 = _slip_cnt_L5[prn];
339 }
340
[2676]341 // Loop over all data types
342 // ------------------------
[2684]343 for (int iEntry = 0; iEntry < GNSSENTRY_NUMBER; ++iEntry) {
344
345 unsigned df = (1 << iEntry);
[2677]346
[2686]347 //// beg test
[2687]348 //// cout << prn.toAscii().data() << " "
349 //// << iEntry << " " << df;
350 //// if (df & gnssData.dataflags[iSat]) {
351 //// cout << " present";
352 //// }
353 //// cout << endl;
[2686]354 //// end test
[2677]355
[2686]356 if (df & gnssData.dataflags[iSat]) {
357
[2685]358 if (iEntry == GNSSENTRY_C1DATA) {
[2702]359 obs->_o.C1 = gnssData.measdata[iSat][iEntry];
[1021]360 }
[2685]361 else if (iEntry == GNSSENTRY_C2DATA) {
[2702]362 obs->_o.C2 = gnssData.measdata[iSat][iEntry];
[2683]363 }
[2685]364 else if (iEntry == GNSSENTRY_P1DATA) {
[2702]365 obs->_o.P1 = gnssData.measdata[iSat][iEntry];
[2684]366 }
[2685]367 else if (iEntry == GNSSENTRY_P2DATA) {
[2702]368 obs->_o.P2 = gnssData.measdata[iSat][iEntry];
[2684]369 }
[2702]370 else if (iEntry == GNSSENTRY_L1CDATA) {
371 obs->_o.L1C = gnssData.measdata[iSat][iEntry];
[2684]372 }
[2702]373 else if (iEntry == GNSSENTRY_L1PDATA) {
374 obs->_o.L1P = gnssData.measdata[iSat][iEntry];
[2684]375 }
[2702]376 else if (iEntry == GNSSENTRY_L2CDATA) {
377 obs->_o.L2C = gnssData.measdata[iSat][iEntry];
[2684]378 }
[2702]379 else if (iEntry == GNSSENTRY_L2PDATA) {
380 obs->_o.L2P = gnssData.measdata[iSat][iEntry];
[2684]381 }
[2702]382 else if (iEntry == GNSSENTRY_D1CDATA) {
383 obs->_o.D1C = gnssData.measdata[iSat][iEntry];
384 }
385 else if (iEntry == GNSSENTRY_D1PDATA) {
386 obs->_o.D1P = gnssData.measdata[iSat][iEntry];
387 }
388 else if (iEntry == GNSSENTRY_S1CDATA) {
389 obs->_o.S1C = gnssData.measdata[iSat][iEntry];
390 }
391 else if (iEntry == GNSSENTRY_S1PDATA) {
392 obs->_o.S1P = gnssData.measdata[iSat][iEntry];
393 }
394 else if (iEntry == GNSSENTRY_D2CDATA) {
395 obs->_o.D2C = gnssData.measdata[iSat][iEntry];
396 }
397 else if (iEntry == GNSSENTRY_D2PDATA) {
398 obs->_o.D2P = gnssData.measdata[iSat][iEntry];
399 }
400 else if (iEntry == GNSSENTRY_S2CDATA) {
401 obs->_o.S2C = gnssData.measdata[iSat][iEntry];
402 }
403 else if (iEntry == GNSSENTRY_S2PDATA) {
404 obs->_o.S2P = gnssData.measdata[iSat][iEntry];
405 }
[2685]406 else if (iEntry == GNSSENTRY_C5DATA) {
[2702]407 obs->_o.C5 = gnssData.measdata[iSat][iEntry];
[2684]408 }
[2685]409 else if (iEntry == GNSSENTRY_L5DATA) {
[2702]410 obs->_o.L5 = gnssData.measdata[iSat][iEntry];
[2684]411 }
[2702]412 else if (iEntry == GNSSENTRY_D5DATA) {
413 obs->_o.D5 = gnssData.measdata[iSat][iEntry];
414 }
[2685]415 else if (iEntry == GNSSENTRY_S5DATA) {
[2702]416 obs->_o.S5 = gnssData.measdata[iSat][iEntry];
[2684]417 }
[2683]418 }
[511]419 }
[366]420 }
[296]421 }
[1021]422
423 // GPS Ephemeris
424 // -------------
425 else if (rr == 1019) {
426 decoded = true;
[2676]427 emit newGPSEph(new gpsephemeris(parser.ephemerisGPS));
[1021]428 }
429
430 // GLONASS Ephemeris
431 // -----------------
432 else if (rr == 1020) {
433 decoded = true;
[2676]434 emit newGlonassEph(new glonassephemeris(parser.ephemerisGLONASS));
[1021]435 }
[296]436 }
437 }
438 }
[2527]439 if (!_rawFile && _mode == unknown && decoded) {
[2387]440 _mode = observations;
[1021]441 }
[296]442 }
[1021]443
444 if (decoded) {
[2672]445 app->storeGlonassSlotNums(parser.GLOFreq);
[1021]446 return success;
[658]447 }
448 else {
[1021]449 return failure;
[658]450 }
[296]451}
[1807]452
453// Store ephemerides
[2676]454//////////////////////////////////////////////////////////////////////////////
[1807]455bool RTCM3Decoder::storeEph(const gpsephemeris& gpseph) {
456 t_ephGPS eph; eph.set(&gpseph);
457
458 return storeEph(eph);
459}
460
461
462bool RTCM3Decoder::storeEph(const t_ephGPS& gpseph) {
[2463]463 const double secPerWeek = 7.0 * 24.0 * 3600.0;
[1807]464 double weekold = 0.0;
[2463]465 double weeknew = gpseph.GPSweek() + gpseph.GPSweeks() / secPerWeek;
[1807]466 if ( _ephList.find(gpseph.prn()) != _ephList.end() ) {
467 weekold = _ephList.find(gpseph.prn())->second.GPSweek()
[2463]468 + _ephList.find(gpseph.prn())->second.GPSweeks() / secPerWeek;
[1807]469 }
470
[2463]471 if ( weeknew - weekold > 1.0/secPerWeek ) {
[1807]472 _ephList[gpseph.prn()] = gpseph;
473
474 return true;
475 }
476
477 return false;
478}
Note: See TracBrowser for help on using the repository browser.