source: ntrip/branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp@ 8475

Last change on this file since 8475 was 8475, checked in by stuerze, 6 years ago

minor changes

File size: 49.9 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 *
[7753]37 * Changes:
[296]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
[6812]47#include "bits.h"
48#include "gnss.h"
[296]49#include "RTCM3Decoder.h"
[6812]50#include "rtcm_utils.h"
[296]51#include "bncconst.h"
[5070]52#include "bnccore.h"
[1535]53#include "bncutils.h"
[7753]54#include "bncsettings.h"
[296]55
56using namespace std;
57
[320]58// Error Handling
59////////////////////////////////////////////////////////////////////////////
[504]60void RTCM3Error(const char*, ...) {
[505]61}
[320]62
[296]63// Constructor
64////////////////////////////////////////////////////////////////////////////
[7753]65RTCM3Decoder::RTCM3Decoder(const QString& staID, bncRawFile* rawFile) :
[8161]66 GPSDecoder() {
[505]67
[8161]68 _staID = staID;
[2527]69 _rawFile = rawFile;
[2387]70
[8161]71 connect(this, SIGNAL(newGPSEph(t_ephGPS)), BNC_CORE,
72 SLOT(slotNewGPSEph(t_ephGPS)));
73 connect(this, SIGNAL(newGlonassEph(t_ephGlo)), BNC_CORE,
74 SLOT(slotNewGlonassEph(t_ephGlo)));
75 connect(this, SIGNAL(newGalileoEph(t_ephGal)), BNC_CORE,
76 SLOT(slotNewGalileoEph(t_ephGal)));
77 connect(this, SIGNAL(newSBASEph(t_ephSBAS)), BNC_CORE,
78 SLOT(slotNewSBASEph(t_ephSBAS)));
79 connect(this, SIGNAL(newBDSEph(t_ephBDS)), BNC_CORE,
80 SLOT(slotNewBDSEph(t_ephBDS)));
[939]81
[6812]82 _MessageSize = _SkipBytes = _BlockSize = _NeedBytes = 0;
[296]83}
84
85// Destructor
86////////////////////////////////////////////////////////////////////////////
87RTCM3Decoder::~RTCM3Decoder() {
[3001]88 QMapIterator<QByteArray, RTCM3coDecoder*> it(_coDecoders);
[8161]89 while (it.hasNext())
[6812]90 {
[3008]91 it.next();
92 delete it.value();
[3001]93 }
[296]94}
95
[7753]96//
[296]97////////////////////////////////////////////////////////////////////////////
[8161]98bool RTCM3Decoder::DecodeRTCM3GPS(unsigned char* data, int size) {
[6812]99 bool decoded = false;
100 bncTime CurrentObsTime;
101 int i, numsats, syncf, type;
102 uint64_t numbits = 0, bitfield = 0;
[508]103
[6812]104 data += 3; /* header */
105 size -= 6; /* header + crc */
[1218]106
[6812]107 GETBITS(type, 12)
[8161]108 SKIPBITS(12)
109 /* id */
110 GETBITS(i, 30)
[913]111
[6812]112 CurrentObsTime.set(i);
[8161]113 if (_CurrentTime.valid() && CurrentObsTime != _CurrentTime) {
[6812]114 decoded = true;
[8163]115 _obsList.append(_CurrentObsList);
[6812]116 _CurrentObsList.clear();
[2551]117 }
[7753]118
[6812]119 _CurrentTime = CurrentObsTime;
[2551]120
[8161]121 GETBITS(syncf, 1)
122 /* sync */
123 GETBITS(numsats, 5)
124 SKIPBITS(4)
125 /* smind, smint */
[3002]126
[8161]127 while (numsats--) {
128 int sv, code, l1range, amb = 0;
[6812]129 t_satObs CurrentObs;
130 CurrentObs._time = CurrentObsTime;
131
132 GETBITS(sv, 6)
[8161]133 if (sv < 40)
[6812]134 CurrentObs._prn.set('G', sv);
135 else
[8161]136 CurrentObs._prn.set('S', sv - 20);
[6812]137
138 t_frqObs *frqObs = new t_frqObs;
139 /* L1 */
140 GETBITS(code, 1);
[8161]141 (code) ?
142 frqObs->_rnxType2ch.assign("1W") : frqObs->_rnxType2ch.assign("1C");
[6812]143 GETBITS(l1range, 24);
144 GETBITSSIGN(i, 20);
[8161]145 if ((i & ((1 << 20) - 1)) != 0x80000) {
146 frqObs->_code = l1range * 0.02;
147 frqObs->_phase = (l1range * 0.02 + i * 0.0005) / GPS_WAVELENGTH_L1;
[6812]148 frqObs->_codeValid = frqObs->_phaseValid = true;
[3002]149 }
[6812]150 GETBITS(i, 7);
151 frqObs->_slipCounter = i;
[8161]152 if (type == 1002 || type == 1004) {
153 GETBITS(amb, 8);
154 if (amb) {
155 frqObs->_code += amb * 299792.458;
156 frqObs->_phase += (amb * 299792.458) / GPS_WAVELENGTH_L1;
[1021]157 }
[6812]158 GETBITS(i, 8);
[8161]159 if (i) {
160 frqObs->_snr = i * 0.25;
[6812]161 frqObs->_snrValid = true;
162 }
[1021]163 }
[6812]164 CurrentObs._obs.push_back(frqObs);
[8161]165 if (type == 1003 || type == 1004) {
[6812]166 frqObs = new t_frqObs;
167 /* L2 */
[8161]168 GETBITS(code, 2);
169 switch (code) {
170 case 3:
171 frqObs->_rnxType2ch.assign("2W"); /* or "2Y"? */
172 break;
173 case 2:
174 frqObs->_rnxType2ch.assign("2W");
175 break;
176 case 1:
177 frqObs->_rnxType2ch.assign("2P");
178 break;
179 case 0:
180 frqObs->_rnxType2ch.assign("2X"); /* or "2S" or "2L"? */
181 break;
[6812]182 }
[8161]183 GETBITSSIGN(i, 14);
184 if ((i & ((1 << 14) - 1)) != 0x2000) {
185 frqObs->_code = l1range * 0.02 + i * 0.02 + amb * 299792.458;
[6812]186 frqObs->_codeValid = true;
187 }
[8161]188 GETBITSSIGN(i, 20);
189 if ((i & ((1 << 20) - 1)) != 0x80000) {
190 frqObs->_phase = (l1range * 0.02 + i * 0.0005 + amb * 299792.458)
191 / GPS_WAVELENGTH_L2;
[6812]192 frqObs->_phaseValid = true;
193 }
[8161]194 GETBITS(i, 7);
[6812]195 frqObs->_slipCounter = i;
[8161]196 if (type == 1004) {
[6812]197 GETBITS(i, 8);
[8161]198 if (i) {
199 frqObs->_snr = i * 0.25;
[6812]200 frqObs->_snrValid = true;
201 }
202 }
203 CurrentObs._obs.push_back(frqObs);
204 }
205 _CurrentObsList.push_back(CurrentObs);
[913]206 }
[7753]207
[8161]208 if (!syncf) {
[6812]209 decoded = true;
[7753]210 _obsList.append(_CurrentObsList);
[6812]211 _CurrentTime.reset();
212 _CurrentObsList.clear();
[2527]213 }
[6812]214 return decoded;
215}
[2527]216
[6812]217#define RTCM3_MSM_NUMSIG 32
218#define RTCM3_MSM_NUMSAT 64
219#define RTCM3_MSM_NUMCELLS 96 /* arbitrary limit */
[1127]220
[6812]221/**
222 * Frequency numbers of GLONASS with an offset of 100 to detect unset values.
223 * Gets filled by ephemeris and data blocks and shared between different streams.
224 */
225static int GLOFreq[RTCM3_MSM_NUMSAT];
[1127]226
[6812]227/*
228 * Storage structure to store frequency and RINEX ID assignment for MSM
229 * message */
230struct CodeData {
231 double wl;
232 const char *code; /* currently unused */
233};
[2677]234
[6812]235/** MSM signal types for GPS and SBAS */
[8161]236static struct CodeData gps[RTCM3_MSM_NUMSIG] = {
237 {0.0, 0},
238 {GPS_WAVELENGTH_L1, "1C"},
239 {GPS_WAVELENGTH_L1, "1P"},
240 {GPS_WAVELENGTH_L1, "1W"},
241 {0.0, 0}/*{GPS_WAVELENGTH_L1,"1Y"}*/,
242 {0.0, 0},
243 {0.0, 0},
244 {GPS_WAVELENGTH_L2, "2C"},
245 {GPS_WAVELENGTH_L2, "2P"},
246 {GPS_WAVELENGTH_L2, "2W"},
247 {0.0, 0}/*{GPS_WAVELENGTH_L2,"2Y"}*/,
248 {0.0, 0},
249 {0.0, 0},
250 {0.0, 0},
251 {GPS_WAVELENGTH_L2, "2S"},
252 {GPS_WAVELENGTH_L2, "2L"},
253 {GPS_WAVELENGTH_L2, "2X"},
254 {0.0, 0},
255 {0.0, 0},
256 {0.0, 0},
257 {0.0, 0},
258 {GPS_WAVELENGTH_L5, "5I"},
259 {GPS_WAVELENGTH_L5, "5Q"},
260 {GPS_WAVELENGTH_L5, "5X"},
261 {0.0, 0},
262 {0.0, 0},
263 {0.0, 0},
264 {0.0, 0},
265 {0.0, 0},
266 {GPS_WAVELENGTH_L1, "1S"},
267 {GPS_WAVELENGTH_L1, "1L"},
268 {GPS_WAVELENGTH_L1, "1X"}
269 };
[1185]270
[6812]271/**
272 * MSM signal types for GLONASS
[7753]273 *
[6812]274 * NOTE: Uses 0.0, 1.0 for wavelength as sat index dependence is done later!
275 */
[8161]276static struct CodeData glo[RTCM3_MSM_NUMSIG] = {
277 {0.0, 0},
278 {0.0, "1C"},
279 {0.0, "1P"},
280 {0.0, 0},
281 {0.0, 0},
282 {0.0, 0},
283 {0.0, 0},
284 {1.0, "2C"},
285 {1.0, "2P"},
286 {0.0, 0},
287 {0.0, 0},
288 {0.0, 0},
289 {0.0, 0},
290 {0.0, 0},
291 {0.0, 0},
292 {0.0, 0},
293 {0.0, 0},
294 {0.0, 0},
295 {0.0, 0},
296 {0.0, 0},
297 {0.0, 0},
298 {0.0, 0},
299 {0.0, 0},
300 {0.0, 0},
301 {0.0, 0},
302 {0.0, 0},
303 {0.0, 0},
304 {0.0, 0},
305 {0.0, 0},
306 {0.0, 0},
307 {0.0, 0},
308 {0.0, 0}
309 };
[1130]310
[6812]311/** MSM signal types for Galileo */
[8161]312static struct CodeData gal[RTCM3_MSM_NUMSIG] = {
313 {0.0, 0},
314 {GAL_WAVELENGTH_E1, "1C"},
315 {GAL_WAVELENGTH_E1, "1A"},
316 {GAL_WAVELENGTH_E1, "1B"},
317 {GAL_WAVELENGTH_E1, "1X"},
318 {GAL_WAVELENGTH_E1, "1Z"},
319 {0.0, 0},
320 {GAL_WAVELENGTH_E6, "6C"},
321 {GAL_WAVELENGTH_E6, "6A"},
322 {GAL_WAVELENGTH_E6, "6B"},
323 {GAL_WAVELENGTH_E6, "6X"},
324 {GAL_WAVELENGTH_E6, "6Z"},
325 {0.0, 0},
326 {GAL_WAVELENGTH_E5B, "7I"},
327 {GAL_WAVELENGTH_E5B, "7Q"},
328 {GAL_WAVELENGTH_E5B, "7X"},
329 {0.0, 0},
330 {GAL_WAVELENGTH_E5AB, "8I"},
331 {GAL_WAVELENGTH_E5AB, "8Q"},
332 {GAL_WAVELENGTH_E5AB, "8X"},
333 {0.0, 0},
334 {GAL_WAVELENGTH_E5A, "5I"},
335 {GAL_WAVELENGTH_E5A, "5Q"},
336 {GAL_WAVELENGTH_E5A, "5X"},
337 {0.0, 0},
338 {0.0, 0},
339 {0.0, 0},
340 {0.0, 0},
341 {0.0, 0},
342 {0.0, 0},
343 {0.0, 0},
344 {0.0, 0},
345 };
[1185]346
[6812]347/** MSM signal types for QZSS */
[8161]348static struct CodeData qzss[RTCM3_MSM_NUMSIG] = {
349 {0.0, 0},
350 {GPS_WAVELENGTH_L1, "1C"},
351 {0.0, 0},
352 {0.0, 0},
353 {0.0, 0},
354 {GPS_WAVELENGTH_L1, "1Z"},
355 {0.0, 0},
356 {0.0, 0},
357 {QZSS_WAVELENGTH_LEX, "6S"},
358 {QZSS_WAVELENGTH_LEX, "6L"},
359 {QZSS_WAVELENGTH_LEX, "6X"},
360 {0.0, 0},
361 {0.0, 0},
362 {0.0, 0},
363 {GPS_WAVELENGTH_L2, "2S"},
364 {GPS_WAVELENGTH_L2, "2L"},
365 {GPS_WAVELENGTH_L2, "2X"},
366 {0.0, 0},
367 {0.0, 0},
368 {0.0, 0},
369 {0.0, 0},
370 {GPS_WAVELENGTH_L5, "5I"},
371 {GPS_WAVELENGTH_L5, "5Q"},
372 {GPS_WAVELENGTH_L5, "5X"},
373 {0.0, 0},
374 {0.0, 0},
375 {0.0, 0},
376 {0.0, 0},
377 {0.0, 0},
378 {GPS_WAVELENGTH_L1, "1D"},
379 {GPS_WAVELENGTH_L1, "1P"},
380 {GPS_WAVELENGTH_L1, "1X"}
381 };
[1185]382
[6812]383/** MSM signal types for Beidou/BDS */
[8161]384static struct CodeData bds[RTCM3_MSM_NUMSIG] = {
385 {0.0, 0},
386 {BDS_WAVELENGTH_B1, "2I"},
387 {0.0, 0},
388 {0.0, 0},
389 {0.0, 0},
390 {0.0, 0},
391 {0.0, 0},
392 {BDS_WAVELENGTH_B3, "6I"},
393 {0.0, 0},
394 {0.0, 0},
395 {0.0, 0},
396 {0.0, 0},
397 {0.0, 0},
398 {BDS_WAVELENGTH_B2, "7I"},
399 {0.0, 0},
400 {0.0, 0},
401 {0.0, 0},
402 {0.0, 0},
403 {0.0, 0},
404 {0.0, 0},
405 {0.0, 0},
406 {0.0, 0},
407 {0.0, 0},
408 {0.0, 0},
409 {0.0, 0},
410 {0.0, 0},
411 {0.0, 0},
412 {0.0, 0},
413 {0.0, 0},
414 {0.0, 0},
415 {0.0, 0},
416 {0.0, 0},
417 };
[1807]418
[6812]419#define UINT64(c) c ## ULL
[1033]420
[7753]421//
[6812]422////////////////////////////////////////////////////////////////////////////
423bool RTCM3Decoder::DecodeRTCM3MSM(unsigned char* data, int size)
[8161]424 {
[6812]425 bool decoded = false;
426 int type, syncf, i;
427 uint64_t numbits = 0, bitfield = 0;
[1807]428
[6812]429 data += 3; /* header */
430 size -= 6; /* header + crc */
[1239]431
[6812]432 GETBITS(type, 12)
[8161]433 SKIPBITS(12)
434 /* id */
[6812]435 char sys;
[8161]436 if (type >= 1121)
[6812]437 sys = 'C';
[8161]438 else if (type >= 1111)
[6812]439 sys = 'J';
[8161]440 else if (type >= 1101)
[6812]441 sys = 'S';
[8161]442 else if (type >= 1091)
[6812]443 sys = 'E';
[8161]444 else if (type >= 1081)
[6812]445 sys = 'R';
446 else
447 sys = 'G';
[2683]448
[6812]449 bncTime CurrentObsTime;
[8161]450 if (sys == 'C') /* BDS */ {
451 GETBITS(i, 30)
[6812]452 CurrentObsTime.setBDS(i);
453 }
[8161]454 else if (sys == 'R') /* GLONASS */ {
[6812]455 SKIPBITS(3)
[8161]456 GETBITS(i, 27)
457 /* tk */
[6812]458 CurrentObsTime.setTk(i);
459 }
[8161]460 else /* GPS style date */ {
461 GETBITS(i, 30)
[6812]462 CurrentObsTime.set(i);
463 }
[8161]464 if (_CurrentTime.valid() && CurrentObsTime != _CurrentTime) {
[6812]465 decoded = true;
[8161]466 _obsList.append(_CurrentObsList);
[6812]467 _CurrentObsList.clear();
468 }
469 _CurrentTime = CurrentObsTime;
[2677]470
[6812]471 GETBITS(syncf, 1)
472 /**
473 * Ignore unknown types except for sync flag
[7753]474 *
[6812]475 * We actually support types 1-3 in following code, but as they are missing
476 * the full cycles and can't be used later we skip interpretation here already.
477 */
[8161]478 if (type <= 1130 && (type % 10) >= 4 && (type % 10) <= 7) {
[6812]479 int sigmask, numsat = 0, numsig = 0;
480 uint64_t satmask, cellmask, ui;
481 double rrmod[RTCM3_MSM_NUMSAT];
482 int rrint[RTCM3_MSM_NUMSAT], rdop[RTCM3_MSM_NUMSAT],
[8161]483 extsat[RTCM3_MSM_NUMSAT];
[6812]484 int ll[RTCM3_MSM_NUMCELLS]/*, hc[RTCM3_MSM_NUMCELLS]*/;
485 double cnr[RTCM3_MSM_NUMCELLS];
486 double cp[RTCM3_MSM_NUMCELLS], psr[RTCM3_MSM_NUMCELLS],
[8161]487 dop[RTCM3_MSM_NUMCELLS];
[2674]488
[8161]489 SKIPBITS(3 + 7 + 2 + 2 + 1 + 3)
[6812]490 GETBITS64(satmask, RTCM3_MSM_NUMSAT)
[2674]491
[6812]492 /* http://gurmeetsingh.wordpress.com/2008/08/05/fast-bit-counting-routines/ */
[8161]493 for (ui = satmask; ui; ui &= (ui - 1) /* remove rightmost bit */)
[6812]494 ++numsat;
495 GETBITS(sigmask, RTCM3_MSM_NUMSIG)
[8161]496 for (i = sigmask; i; i &= (i - 1) /* remove rightmost bit */)
[6812]497 ++numsig;
[8161]498 for (i = 0; i < RTCM3_MSM_NUMSAT; ++i)
[6812]499 extsat[i] = 15;
[2674]500
[8161]501 i = numsat * numsig;
502 GETBITS64(cellmask, (unsigned )i)
[6812]503
[8161]504 switch (type % 10) {
[6812]505 case 1:
506 case 2:
507 case 3:
[8161]508 /* partial data, already skipped above, but implemented for future expansion ! */
509 for (int j = numsat; j--;)
510 GETFLOAT(rrmod[j], 10, 1.0 / 1024.0)
[6812]511 break;
512 case 4:
[8161]513 case 6:
514 for (int j = numsat; j--;)
515 GETBITS(rrint[j], 8)
516 for (int j = numsat; j--;)
517 GETFLOAT(rrmod[j], 10, 1.0 / 1024.0)
[6812]518 break;
519 case 5:
520 case 7:
[8161]521 for (int j = numsat; j--;)
522 GETBITS(rrint[j], 8)
523 for (int j = numsat; j--;)
524 GETBITS(extsat[j], 4)
525 for (int j = numsat; j--;)
526 GETFLOAT(rrmod[j], 10, 1.0 / 1024.0)
527 for (int j = numsat; j--;)
528 GETBITSSIGN(rdop[j], 14)
[6812]529 break;
[8161]530 }
531
532 int numcells = numsat * numsig;
533 /** Drop anything which exceeds our cell limit. Increase limit definition
534 * when that happens. */
535 if (numcells <= RTCM3_MSM_NUMCELLS) {
536 switch (type % 10) {
537 case 1:
538 for (int count = numcells; count--;)
539 if (cellmask & (UINT64(1) << count))
540 GETFLOATSIGN(psr[count], 15, 1.0 / (1 << 24))
541 break;
542 case 2:
543 for (int count = numcells; count--;)
544 if (cellmask & (UINT64(1) << count))
545 GETFLOATSIGN(cp[count], 22, 1.0 / (1 << 29))
546 for (int count = numcells; count--;)
547 if (cellmask & (UINT64(1) << count))
548 GETBITS(ll[count], 4)
549 for (int count = numcells; count--;)
550 if (cellmask & (UINT64(1) << count))
551 SKIPBITS(1)/*GETBITS(hc[count], 1)*/
552 break;
553 case 3:
554 for (int count = numcells; count--;)
555 if (cellmask & (UINT64(1) << count))
556 GETFLOATSIGN(psr[count], 15, 1.0 / (1 << 24))
557 for (int count = numcells; count--;)
558 if (cellmask & (UINT64(1) << count))
559 GETFLOATSIGN(cp[count], 22, 1.0 / (1 << 29))
560 for (int count = numcells; count--;)
561 if (cellmask & (UINT64(1) << count))
562 GETBITS(ll[count], 4)
563 for (int count = numcells; count--;)
564 if (cellmask & (UINT64(1) << count))
565 SKIPBITS(1)/*GETBITS(hc[count], 1)*/
566 break;
567 case 4:
568 for (int count = numcells; count--;)
569 if (cellmask & (UINT64(1) << count))
570 GETFLOATSIGN(psr[count], 15, 1.0 / (1 << 24))
571 for (int count = numcells; count--;)
572 if (cellmask & (UINT64(1) << count))
573 GETFLOATSIGN(cp[count], 22, 1.0 / (1 << 29))
574 for (int count = numcells; count--;)
575 if (cellmask & (UINT64(1) << count))
576 GETBITS(ll[count], 4)
577 for (int count = numcells; count--;)
578 if (cellmask & (UINT64(1) << count))
579 SKIPBITS(1)/*GETBITS(hc[count], 1)*/
580 for (int count = numcells; count--;)
581 if (cellmask & (UINT64(1) << count))
582 GETBITS(cnr[count], 6)
583 break;
584 case 5:
585 for (int count = numcells; count--;)
586 if (cellmask & (UINT64(1) << count))
587 GETFLOATSIGN(psr[count], 15, 1.0 / (1 << 24))
588 for (int count = numcells; count--;)
589 if (cellmask & (UINT64(1) << count))
590 GETFLOATSIGN(cp[count], 22, 1.0 / (1 << 29))
591 for (int count = numcells; count--;)
592 if (cellmask & (UINT64(1) << count))
593 GETBITS(ll[count], 4)
594 for (int count = numcells; count--;)
595 if (cellmask & (UINT64(1) << count))
596 SKIPBITS(1)/*GETBITS(hc[count], 1)*/
597 for (int count = numcells; count--;)
598 if (cellmask & (UINT64(1) << count))
599 GETFLOAT(cnr[count], 6, 1.0)
600 for (int count = numcells; count--;)
601 if (cellmask & (UINT64(1) << count))
602 GETFLOATSIGN(dop[count], 15, 0.0001)
603 break;
604 case 6:
605 for (int count = numcells; count--;)
606 if (cellmask & (UINT64(1) << count))
607 GETFLOATSIGN(psr[count], 20, 1.0 / (1 << 29))
608 for (int count = numcells; count--;)
609 if (cellmask & (UINT64(1) << count))
610 GETFLOATSIGN(cp[count], 24, 1.0 / (1U << 31))
611 for (int count = numcells; count--;)
612 if (cellmask & (UINT64(1) << count))
613 GETBITS(ll[count], 10)
614 for (int count = numcells; count--;)
615 if (cellmask & (UINT64(1) << count))
616 SKIPBITS(1)/*GETBITS(hc[count], 1)*/
617 for (int count = numcells; count--;)
618 if (cellmask & (UINT64(1) << count))
619 GETFLOAT(cnr[count], 10, 1.0 / (1 << 4))
620 break;
621 case 7:
622 for (int count = numcells; count--;)
623 if (cellmask & (UINT64(1) << count))
624 GETFLOATSIGN(psr[count], 20, 1.0 / (1 << 29))
625 for (int count = numcells; count--;)
626 if (cellmask & (UINT64(1) << count))
627 GETFLOATSIGN(cp[count], 24, 1.0 / (1U << 31))
628 for (int count = numcells; count--;)
629 if (cellmask & (UINT64(1) << count))
630 GETBITS(ll[count], 10)
631 for (int count = numcells; count--;)
632 if (cellmask & (UINT64(1) << count))
633 SKIPBITS(1)/*GETBITS(hc[count], 1)*/
634 for (int count = numcells; count--;)
635 if (cellmask & (UINT64(1) << count))
636 GETFLOAT(cnr[count], 10, 1.0 / (1 << 4))
637 for (int count = numcells; count--;)
638 if (cellmask & (UINT64(1) << count))
639 GETFLOATSIGN(dop[count], 15, 0.0001)
640 break;
[6812]641 }
642 i = RTCM3_MSM_NUMSAT;
643 int j = -1;
644 t_satObs CurrentObs;
[8161]645 for (int count = numcells; count--;) {
646 while (j >= 0 && !(sigmask & (1 << --j)))
[6812]647 ;
[8161]648 if (j < 0) {
649 while (!(satmask & (UINT64(1) << (--i))))
650 /* next satellite */
[6812]651 ;
[8161]652 if (CurrentObs._obs.size() > 0)
[6812]653 _CurrentObsList.push_back(CurrentObs);
654 CurrentObs.clear();
655 CurrentObs._time = CurrentObsTime;
[8161]656 if (sys == 'S')
657 CurrentObs._prn.set(sys, 20 - 1 + RTCM3_MSM_NUMSAT - i);
[6812]658 else
[8161]659 CurrentObs._prn.set(sys, RTCM3_MSM_NUMSAT - i);
[6812]660 j = RTCM3_MSM_NUMSIG;
[8161]661 while (!(sigmask & (1 << --j)))
[6812]662 ;
663 --numsat;
664 }
[8161]665 if (cellmask & (UINT64(1) << count)) {
666 struct CodeData cd = {0.0, 0};
667 switch (sys) {
668 case 'J':
669 cd = qzss[RTCM3_MSM_NUMSIG - j - 1];
670 break;
671 case 'C':
672 cd = bds[RTCM3_MSM_NUMSIG - j - 1];
673 break;
674 case 'G':
675 case 'S':
676 cd = gps[RTCM3_MSM_NUMSIG - j - 1];
677 break;
678 case 'R':
679 cd = glo[RTCM3_MSM_NUMSIG - j - 1];
[6812]680 {
[8161]681 int k = GLOFreq[RTCM3_MSM_NUMSAT - i - 1];
682 if (extsat[numsat] < 14) {
683 k = GLOFreq[RTCM3_MSM_NUMSAT - i - 1] = 100 + extsat[numsat]
684 - 7;
685 }
686 if (k)
687 cd.wl = (
688 cd.wl == 0.0 ?
689 GLO_WAVELENGTH_L1(k - 100) :
690 GLO_WAVELENGTH_L2(k - 100));
691 else
692 cd.code = 0;
[2676]693 }
[8161]694 break;
695 case 'E':
696 cd = gal[RTCM3_MSM_NUMSIG - j - 1];
697 break;
[6812]698 }
[8161]699 if (cd.code) {
[6812]700 t_frqObs *frqObs = new t_frqObs;
[7850]701 frqObs->_rnxType2ch.assign(cd.code);
[2674]702
[8161]703 switch (type % 10) {
704 case 1:
705 if (psr[count] > -1.0 / (1 << 10)) {
706 frqObs->_code = psr[count] * LIGHTSPEED / 1000.0
707 + (rrmod[numsat]) * LIGHTSPEED / 1000.0;
708 frqObs->_codeValid = true;
709 }
710 break;
711 case 2:
712 if (cp[count] > -1.0 / (1 << 8)) {
713 frqObs->_phase = cp[count] * LIGHTSPEED / 1000.0 / cd.wl
714 + (rrmod[numsat]) * LIGHTSPEED / 1000.0 / cd.wl;
715 frqObs->_phaseValid = true;
716 frqObs->_slipCounter = ll[count];
717 }
718 break;
719 case 3:
720 if (psr[count] > -1.0 / (1 << 10)) {
721 frqObs->_code = psr[count] * LIGHTSPEED / 1000.0
722 + (rrmod[numsat]) * LIGHTSPEED / 1000.0;
723 frqObs->_codeValid = true;
724 }
[2669]725
[8161]726 if (cp[count] > -1.0 / (1 << 8)) {
727 frqObs->_phase = cp[count] * LIGHTSPEED / 1000.0 / cd.wl
728 + rrmod[numsat] * LIGHTSPEED / 1000.0 / cd.wl;
729 frqObs->_phaseValid = true;
730 frqObs->_slipCounter = ll[count];
731 }
732 break;
733 case 4:
734 if (psr[count] > -1.0 / (1 << 10)) {
735 frqObs->_code = psr[count] * LIGHTSPEED / 1000.0
736 + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0;
737 frqObs->_codeValid = true;
738 }
[2674]739
[8161]740 if (cp[count] > -1.0 / (1 << 8)) {
741 frqObs->_phase = cp[count] * LIGHTSPEED / 1000.0 / cd.wl
742 + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0
743 / cd.wl;
744 frqObs->_phaseValid = true;
745 frqObs->_slipCounter = ll[count];
746 }
[4368]747
[8161]748 frqObs->_snr = cnr[count];
749 frqObs->_snrValid = true;
750 break;
751 case 5:
752 if (psr[count] > -1.0 / (1 << 10)) {
753 frqObs->_code = psr[count] * LIGHTSPEED / 1000.0
754 + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0;
755 frqObs->_codeValid = true;
756 }
[4368]757
[8161]758 if (cp[count] > -1.0 / (1 << 8)) {
759 frqObs->_phase = cp[count] * LIGHTSPEED / 1000.0 / cd.wl
760 + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0
761 / cd.wl;
762 frqObs->_phaseValid = true;
763 frqObs->_slipCounter = ll[count];
764 }
[2669]765
[8161]766 frqObs->_snr = cnr[count];
767 frqObs->_snrValid = true;
[1807]768
[8161]769 if (dop[count] > -1.6384) {
770 frqObs->_doppler = -(dop[count] + rdop[numsat]) / cd.wl;
771 frqObs->_dopplerValid = true;
772 }
773 break;
774 case 6:
775 if (psr[count] > -1.0 / (1 << 10)) {
776 frqObs->_code = psr[count] * LIGHTSPEED / 1000.0
777 + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0;
778 frqObs->_codeValid = true;
779 }
[6812]780
[8161]781 if (cp[count] > -1.0 / (1 << 8)) {
782 frqObs->_phase = cp[count] * LIGHTSPEED / 1000.0 / cd.wl
783 + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0
784 / cd.wl;
785 frqObs->_phaseValid = true;
786 frqObs->_slipCounter = ll[count];
787 }
[6812]788
[8161]789 frqObs->_snr = cnr[count];
790 frqObs->_snrValid = true;
791 break;
792 case 7:
793 if (psr[count] > -1.0 / (1 << 10)) {
794 frqObs->_code = psr[count] * LIGHTSPEED / 1000.0
795 + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0;
796 frqObs->_codeValid = true;
797 }
[2687]798
[8161]799 if (cp[count] > -1.0 / (1 << 8)) {
800 frqObs->_phase = cp[count] * LIGHTSPEED / 1000.0 / cd.wl
801 + (rrmod[numsat] + rrint[numsat]) * LIGHTSPEED / 1000.0
802 / cd.wl;
803 frqObs->_phaseValid = true;
804 frqObs->_slipCounter = ll[count];
805 }
[6137]806
[8161]807 frqObs->_snr = cnr[count];
808 frqObs->_snrValid = true;
[6137]809
[8161]810 if (dop[count] > -1.6384) {
811 frqObs->_doppler = -(dop[count] + rdop[numsat]) / cd.wl;
812 frqObs->_dopplerValid = true;
813 }
814 break;
[366]815 }
[6812]816 CurrentObs._obs.push_back(frqObs);
[296]817 }
[6812]818 }
819 }
[8161]820 if (CurrentObs._obs.size() > 0)
[6812]821 _CurrentObsList.push_back(CurrentObs);
822 }
823 }
[8161]824 else if ((type % 10) < 3) {
[6812]825 emit(newMessage(QString("%1: Block %2 contain partial data! Ignored!")
[8161]826 .arg(_staID).arg(type).toAscii(), true));
[6812]827 }
[8161]828 if (!syncf) {
[6812]829 decoded = true;
[8165]830 _obsList.append(_CurrentObsList);
[6812]831 _CurrentTime.reset();
832 _CurrentObsList.clear();
833 }
834 return decoded;
835}
836
[7753]837//
[6812]838////////////////////////////////////////////////////////////////////////////
[8161]839bool RTCM3Decoder::DecodeRTCM3GLONASS(unsigned char* data, int size) {
[6812]840 bool decoded = false;
841 bncTime CurrentObsTime;
842 int i, numsats, syncf, type;
843 uint64_t numbits = 0, bitfield = 0;
844
845 data += 3; /* header */
846 size -= 6; /* header + crc */
847
848 GETBITS(type, 12)
[8161]849 SKIPBITS(12)
850 /* id */
851 GETBITS(i, 27)
852 /* tk */
[6812]853
854 CurrentObsTime.setTk(i);
[8161]855 if (_CurrentTime.valid() && CurrentObsTime != _CurrentTime) {
[6812]856 decoded = true;
[7753]857 _obsList.append(_CurrentObsList);
[6812]858 _CurrentObsList.clear();
859 }
860 _CurrentTime = CurrentObsTime;
861
[8161]862 GETBITS(syncf, 1)
863 /* sync */
864 GETBITS(numsats, 5)
865 SKIPBITS(4)
866 /* smind, smint */
[6812]867
[8161]868 while (numsats--) {
869 int sv, code, l1range, amb = 0, freq;
[6812]870 t_satObs CurrentObs;
871 CurrentObs._time = CurrentObsTime;
872
873 GETBITS(sv, 6)
874 CurrentObs._prn.set('R', sv);
875 GETBITS(code, 1)
876 GETBITS(freq, 5)
[8161]877 GLOFreq[sv - 1] = 100 + freq - 7; /* store frequency for other users (MSM) */
[6812]878
879 t_frqObs *frqObs = new t_frqObs;
880 /* L1 */
[8161]881 (code) ?
882 frqObs->_rnxType2ch.assign("1P") : frqObs->_rnxType2ch.assign("1C");
[6812]883 GETBITS(l1range, 25);
884 GETBITSSIGN(i, 20);
[8161]885 if ((i & ((1 << 20) - 1)) != 0x80000) {
886 frqObs->_code = l1range * 0.02;
887 frqObs->_phase = (l1range * 0.02 + i * 0.0005)
888 / GLO_WAVELENGTH_L1(freq - 7);
[6812]889 frqObs->_codeValid = frqObs->_phaseValid = true;
890 }
891 GETBITS(i, 7);
892 frqObs->_slipCounter = i;
[8161]893 if (type == 1010 || type == 1012) {
894 GETBITS(amb, 7);
895 if (amb) {
896 frqObs->_code += amb * 599584.916;
897 frqObs->_phase += (amb * 599584.916) / GLO_WAVELENGTH_L1(freq - 7);
[6812]898 }
899 GETBITS(i, 8);
[8161]900 if (i) {
901 frqObs->_snr = i * 0.25;
[6812]902 frqObs->_snrValid = true;
903 }
904 }
905 CurrentObs._obs.push_back(frqObs);
[8161]906 if (type == 1011 || type == 1012) {
[6812]907 frqObs = new t_frqObs;
908 /* L2 */
[8161]909 GETBITS(code, 2);
910 switch (code) {
911 case 3:
912 frqObs->_rnxType2ch.assign("2P");
913 break;
914 case 2:
915 frqObs->_rnxType2ch.assign("2P");
916 break;
917 case 1:
918 frqObs->_rnxType2ch.assign("2P");
919 break;
920 case 0:
921 frqObs->_rnxType2ch.assign("2C");
922 break;
[6812]923 }
[8161]924 GETBITSSIGN(i, 14);
925 if ((i & ((1 << 14) - 1)) != 0x2000) {
926 frqObs->_code = l1range * 0.02 + i * 0.02 + amb * 599584.916;
[6812]927 frqObs->_codeValid = true;
928 }
[8161]929 GETBITSSIGN(i, 20);
930 if ((i & ((1 << 20) - 1)) != 0x80000) {
931 frqObs->_phase = (l1range * 0.02 + i * 0.0005 + amb * 599584.916)
932 / GLO_WAVELENGTH_L2(freq - 7);
[6812]933 frqObs->_phaseValid = true;
934 }
[8161]935 GETBITS(i, 7);
[6812]936 frqObs->_slipCounter = i;
[8161]937 if (type == 1012) {
[6812]938 GETBITS(i, 8);
[8161]939 if (i) {
940 frqObs->_snr = i * 0.25;
[6812]941 frqObs->_snrValid = true;
942 }
943 }
944 CurrentObs._obs.push_back(frqObs);
945 }
946 _CurrentObsList.push_back(CurrentObs);
947 }
[8161]948 if (!syncf) {
[6812]949 decoded = true;
[7753]950 _obsList.append(_CurrentObsList);
[6812]951 _CurrentTime.reset();
952 _CurrentObsList.clear();
953 }
954 return decoded;
955}
956
957//
958////////////////////////////////////////////////////////////////////////////
[8161]959bool RTCM3Decoder::DecodeGPSEphemeris(unsigned char* data, int size) {
[6812]960 bool decoded = false;
961
[8161]962 if (size == 67) {
[6812]963 t_ephGPS eph;
964 int i, week;
965 uint64_t numbits = 0, bitfield = 0;
966
967 data += 3; /* header */
968 size -= 6; /* header + crc */
969 SKIPBITS(12)
970
971 eph._receptDateTime = currentDateAndTimeGPS();
972
973 GETBITS(i, 6)
974 eph._prn.set('G', i);
975 GETBITS(week, 10)
976 GETBITS(i, 4)
977 eph._ura = accuracyFromIndex(i, eph.type());
978 GETBITS(eph._L2Codes, 2)
979 GETFLOATSIGN(eph._IDOT, 14, R2R_PI/(double)(1<<30)/(double)(1<<13))
980 GETBITS(eph._IODE, 8)
981 GETBITS(i, 16)
982 i <<= 4;
[8161]983 eph._TOC.set(i * 1000);
984 GETFLOATSIGN(eph._clock_driftrate, 8,
985 1.0 / (double )(1 << 30) / (double )(1 << 25))
986 GETFLOATSIGN(eph._clock_drift, 16,
987 1.0 / (double )(1 << 30) / (double )(1 << 13))
988 GETFLOATSIGN(eph._clock_bias, 22,
989 1.0 / (double )(1 << 30) / (double )(1 << 1))
[6812]990 GETBITS(eph._IODC, 10)
[8161]991 GETFLOATSIGN(eph._Crs, 16, 1.0 / (double )(1 << 5))
[6812]992 GETFLOATSIGN(eph._Delta_n, 16, R2R_PI/(double)(1<<30)/(double)(1<<13))
993 GETFLOATSIGN(eph._M0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]994 GETFLOATSIGN(eph._Cuc, 16, 1.0 / (double )(1 << 29))
995 GETFLOAT(eph._e, 32, 1.0 / (double )(1 << 30) / (double )(1 << 3))
996 GETFLOATSIGN(eph._Cus, 16, 1.0 / (double )(1 << 29))
997 GETFLOAT(eph._sqrt_A, 32, 1.0 / (double )(1 << 19))
[6812]998 GETBITS(i, 16)
999 i <<= 4;
1000 eph._TOEsec = i;
1001 bncTime t;
[8161]1002 t.set(i * 1000);
[6812]1003 eph._TOEweek = t.gpsw();
[8473]1004 int numOfRollOvers = int(floor(t.gpsw()/1024.0));
1005 week += (numOfRollOvers * 1024);
[6812]1006 /* week from HOW, differs from TOC, TOE week, we use adapted value instead */
[8161]1007 if (eph._TOEweek > week + 1 || eph._TOEweek < week - 1) /* invalid week */
[6812]1008 return false;
[8161]1009 GETFLOATSIGN(eph._Cic, 16, 1.0 / (double )(1 << 29))
[6812]1010 GETFLOATSIGN(eph._OMEGA0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1011 GETFLOATSIGN(eph._Cis, 16, 1.0 / (double )(1 << 29))
[6812]1012 GETFLOATSIGN(eph._i0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1013 GETFLOATSIGN(eph._Crc, 16, 1.0 / (double )(1 << 5))
[6812]1014 GETFLOATSIGN(eph._omega, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
1015 GETFLOATSIGN(eph._OMEGADOT, 24, R2R_PI/(double)(1<<30)/(double)(1<<13))
[8161]1016 GETFLOATSIGN(eph._TGD, 8, 1.0 / (double )(1 << 30) / (double )(1 << 1))
[6812]1017 GETBITS(eph._health, 6)
1018 GETBITS(eph._L2PFlag, 1)
1019 GETBITS(eph._fitInterval, 1)
1020 eph._TOT = 0.9999e9;
1021
1022 emit newGPSEph(eph);
1023 decoded = true;
1024 }
1025 return decoded;
1026}
1027
1028//
1029////////////////////////////////////////////////////////////////////////////
[8161]1030bool RTCM3Decoder::DecodeGLONASSEphemeris(unsigned char* data, int size) {
[6812]1031 bool decoded = false;
1032
[8161]1033 if (size == 51) {
[6812]1034 t_ephGlo eph;
1035 int sv, i, tk;
1036 uint64_t numbits = 0, bitfield = 0;
1037
1038 data += 3; /* header */
1039 size -= 6; /* header + crc */
1040 SKIPBITS(12)
1041
1042 eph._receptDateTime = currentDateAndTimeGPS();
1043
1044 GETBITS(sv, 6)
1045 eph._prn.set('R', sv);
1046
1047 GETBITS(i, 5)
[8161]1048 eph._frequency_number = i - 7;
[8184]1049 GETBITS(eph._almanac_health, 1) /* almanac healthy */
1050 GETBITS(eph._almanac_health_availablility_indicator, 1) /* almanac health ok */
1051 GETBITS(eph._P1, 2) /* P1 */
[6812]1052 GETBITS(i, 5)
[8161]1053 tk = i * 60 * 60;
[6812]1054 GETBITS(i, 6)
[8161]1055 tk += i * 60;
[6812]1056 GETBITS(i, 1)
[8161]1057 tk += i * 30;
1058 eph._tki = tk < 3 * 60 * 60 ? tk - 3 * 60 * 60 + 86400 : tk - 3 * 60 * 60;
[8184]1059 GETBITS(eph._health, 1) /* MSB of Bn*/
1060 GETBITS(eph._P2, 1) /* P2 */
[6812]1061 GETBITS(i, 7)
[8161]1062 eph._TOC.setTk(i * 15 * 60 * 1000); /* tb */
[6812]1063
[8161]1064 GETFLOATSIGNM(eph._x_velocity, 24, 1.0 / (double )(1 << 20))
1065 GETFLOATSIGNM(eph._x_pos, 27, 1.0 / (double )(1 << 11))
1066 GETFLOATSIGNM(eph._x_acceleration, 5, 1.0 / (double )(1 << 30))
1067 GETFLOATSIGNM(eph._y_velocity, 24, 1.0 / (double )(1 << 20))
1068 GETFLOATSIGNM(eph._y_pos, 27, 1.0 / (double )(1 << 11))
1069 GETFLOATSIGNM(eph._y_acceleration, 5, 1.0 / (double )(1 << 30))
1070 GETFLOATSIGNM(eph._z_velocity, 24, 1.0 / (double )(1 << 20))
1071 GETFLOATSIGNM(eph._z_pos, 27, 1.0 / (double )(1 << 11))
1072 GETFLOATSIGNM(eph._z_acceleration, 5, 1.0 / (double )(1 << 30))
[8475]1073
1074 eph._xv(1) = eph._x_pos * 1.e3;
1075 eph._xv(2) = eph._y_pos * 1.e3;
1076 eph._xv(3) = eph._z_pos * 1.e3;
1077 eph._xv(4) = eph._x_velocity * 1.e3;
1078 eph._xv(5) = eph._y_velocity * 1.e3;
1079 eph._xv(6) = eph._z_velocity * 1.e3;
1080
[8184]1081 GETBITS(eph._P3, 1) /* P3 */
[8161]1082 GETFLOATSIGNM(eph._gamma, 11, 1.0 / (double )(1 << 30) / (double )(1 << 10))
[8184]1083 GETBITS(eph._M_P, 2) /* GLONASS-M P, */
1084 GETBITS(eph._M_l3, 1) /*GLONASS-M ln (third string) */
1085 GETFLOATSIGNM(eph._tau, 22, 1.0 / (double )(1 << 30)) /* GLONASS tau n(tb) */
1086 GETFLOATSIGNM(eph._M_delta_tau, 5, 1.0 / (double )(1 << 30)) /* GLONASS-M delta tau n(tb) */
[6812]1087 GETBITS(eph._E, 5)
[8184]1088 GETBITS(eph._M_P4, 1) /* GLONASS-M P4 */
1089 GETBITS(eph._M_FT, 4) /* GLONASS-M Ft */
1090 GETBITS(eph._M_NT, 11) /* GLONASS-M Nt */
1091 GETBITS(eph._M_M, 2) /* GLONASS-M M */
1092 GETBITS(eph._additional_data_availability, 1) /* GLONASS-M The Availability of Additional Data */
1093 GETBITS(eph._NA, 11) /* GLONASS-M Na */
1094 GETFLOATSIGNM(eph._tauC, 32, 1.0/(double)(1<<30)/(double)(1<<1)) /* GLONASS tau c */
1095 GETBITS(eph._M_N4, 5) /* GLONASS-M N4 */
1096 GETFLOATSIGNM(eph._M_tau_GPS, 22, 1.0/(double)(1<<30)) /* GLONASS-M tau GPS */
1097 GETBITS(eph._M_l5, 1) /* GLONASS-M ln (fifth string) */
[6812]1098
1099 unsigned year, month, day;
1100 eph._TOC.civil_date(year, month, day);
1101 eph._gps_utc = gnumleap(year, month, day);
1102 eph._tt = eph._TOC;
1103
[8475]1104 GLOFreq[sv - 1] = 100 + eph._frequency_number ; /* store frequency for other users (MSM) */
[8200]1105 _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0);
[8455]1106
[6812]1107 emit newGlonassEph(eph);
1108 decoded = true;
1109 }
1110 return decoded;
1111}
1112
1113//
1114////////////////////////////////////////////////////////////////////////////
[8161]1115bool RTCM3Decoder::DecodeQZSSEphemeris(unsigned char* data, int size) {
[6812]1116 bool decoded = false;
1117
[8161]1118 if (size == 67) {
[6812]1119 t_ephGPS eph;
1120 int i, week;
1121 uint64_t numbits = 0, bitfield = 0;
1122
1123 data += 3; /* header */
1124 size -= 6; /* header + crc */
1125 SKIPBITS(12)
1126
1127 eph._receptDateTime = currentDateAndTimeGPS();
1128
1129 GETBITS(i, 4)
1130 eph._prn.set('J', i);
1131
1132 GETBITS(i, 16)
1133 i <<= 4;
[8161]1134 eph._TOC.set(i * 1000);
[6812]1135
[8161]1136 GETFLOATSIGN(eph._clock_driftrate, 8,
1137 1.0 / (double )(1 << 30) / (double )(1 << 25))
1138 GETFLOATSIGN(eph._clock_drift, 16,
1139 1.0 / (double )(1 << 30) / (double )(1 << 13))
1140 GETFLOATSIGN(eph._clock_bias, 22,
1141 1.0 / (double )(1 << 30) / (double )(1 << 1))
[6812]1142 GETBITS(eph._IODE, 8)
[8161]1143 GETFLOATSIGN(eph._Crs, 16, 1.0 / (double )(1 << 5))
[6812]1144 GETFLOATSIGN(eph._Delta_n, 16, R2R_PI/(double)(1<<30)/(double)(1<<13))
1145 GETFLOATSIGN(eph._M0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1146 GETFLOATSIGN(eph._Cuc, 16, 1.0 / (double )(1 << 29))
1147 GETFLOAT(eph._e, 32, 1.0 / (double )(1 << 30) / (double )(1 << 3))
1148 GETFLOATSIGN(eph._Cus, 16, 1.0 / (double )(1 << 29))
1149 GETFLOAT(eph._sqrt_A, 32, 1.0 / (double )(1 << 19))
[6812]1150 GETBITS(i, 16)
1151 i <<= 4;
1152 eph._TOEsec = i;
1153 bncTime t;
[8471]1154 t.set(i*1000);
1155 eph._TOEweek = t.gpsw();
[8161]1156 GETFLOATSIGN(eph._Cic, 16, 1.0 / (double )(1 << 29))
[6812]1157 GETFLOATSIGN(eph._OMEGA0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1158 GETFLOATSIGN(eph._Cis, 16, 1.0 / (double )(1 << 29))
[6812]1159 GETFLOATSIGN(eph._i0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1160 GETFLOATSIGN(eph._Crc, 16, 1.0 / (double )(1 << 5))
[6812]1161 GETFLOATSIGN(eph._omega, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
1162 GETFLOATSIGN(eph._OMEGADOT, 24, R2R_PI/(double)(1<<30)/(double)(1<<13))
1163 GETFLOATSIGN(eph._IDOT, 14, R2R_PI/(double)(1<<30)/(double)(1<<13))
1164 GETBITS(eph._L2Codes, 2)
1165 GETBITS(week, 10)
[8473]1166 int numOfRollOvers = int(floor(t.gpsw()/1024.0));
1167 week += (numOfRollOvers * 1024);
[6812]1168 /* week from HOW, differs from TOC, TOE week, we use adapted value instead */
[8161]1169 if (eph._TOEweek > week + 1 || eph._TOEweek < week - 1) /* invalid week */
[6812]1170 return false;
1171
1172 GETBITS(i, 4)
[8161]1173 if (i <= 6)
1174 eph._ura = ceil(10.0 * pow(2.0, 1.0 + i / 2.0)) / 10.0;
[6812]1175 else
[8161]1176 eph._ura = ceil(10.0 * pow(2.0, i / 2.0)) / 10.0;
[6812]1177 GETBITS(eph._health, 6)
[8161]1178 GETFLOATSIGN(eph._TGD, 8, 1.0 / (double )(1 << 30) / (double )(1 << 1))
[6812]1179 GETBITS(eph._IODC, 10)
1180 GETBITS(eph._fitInterval, 1)
1181 eph._TOT = 0.9999e9;
1182 eph._L2PFlag = 0; /* does not exist for QZSS */
1183
1184 emit newGPSEph(eph);
1185 decoded = true;
1186 }
1187 return decoded;
1188}
1189
1190//
1191////////////////////////////////////////////////////////////////////////////
[8161]1192bool RTCM3Decoder::DecodeSBASEphemeris(unsigned char* data, int size) {
[6812]1193 bool decoded = false;
1194
[8161]1195 if (size == 35) {
[6812]1196 t_ephSBAS eph;
1197 int i;
1198 uint64_t numbits = 0, bitfield = 0;
1199
1200 data += 3; /* header */
1201 size -= 6; /* header + crc */
1202 SKIPBITS(12)
1203
1204 eph._receptDateTime = currentDateAndTimeGPS();
1205
1206 GETBITS(i, 6)
[8161]1207 eph._prn.set('S', 20 + i);
[6812]1208 GETBITS(eph._IODN, 8)
1209 GETBITS(i, 13)
1210 i <<= 4;
[8161]1211 eph._TOC.setTOD(i * 1000);
[6812]1212 GETBITS(i, 4)
1213 eph._ura = accuracyFromIndex(i, eph.type());
1214 GETFLOATSIGN(eph._x_pos, 30, 0.08)
1215 GETFLOATSIGN(eph._y_pos, 30, 0.08)
1216 GETFLOATSIGN(eph._z_pos, 25, 0.4)
1217 GETFLOATSIGN(eph._x_velocity, 17, 0.000625)
1218 GETFLOATSIGN(eph._y_velocity, 17, 0.000625)
1219 GETFLOATSIGN(eph._z_velocity, 18, 0.004)
1220 GETFLOATSIGN(eph._x_acceleration, 10, 0.0000125)
1221 GETFLOATSIGN(eph._y_acceleration, 10, 0.0000125)
1222 GETFLOATSIGN(eph._z_acceleration, 10, 0.0000625)
[8161]1223 GETFLOATSIGN(eph._agf0, 12, 1.0 / (1 << 30) / (1 << 1))
1224 GETFLOATSIGN(eph._agf1, 8, 1.0 / (1 << 30) / (1 << 10))
[6812]1225
[8455]1226 eph._TOT = 0.9999E9;
[6812]1227 eph._health = 0;
1228
1229 emit newSBASEph(eph);
1230 decoded = true;
1231 }
1232 return decoded;
1233}
1234
1235//
1236////////////////////////////////////////////////////////////////////////////
[8161]1237bool RTCM3Decoder::DecodeGalileoEphemeris(unsigned char* data, int size) {
[6812]1238 bool decoded = false;
1239 uint64_t numbits = 0, bitfield = 0;
1240 int i;
1241
1242 data += 3; /* header */
1243 size -= 6; /* header + crc */
1244 GETBITS(i, 12)
1245
[8161]1246 if ((i == 1046 && size == 61) || (i == 1045 && size == 60)) {
[6812]1247 t_ephGal eph;
1248
1249 eph._receptDateTime = currentDateAndTimeGPS();
1250
1251 eph._inav = (i == 1046);
1252 eph._fnav = (i == 1045);
1253 GETBITS(i, 6)
1254 eph._prn.set('E', i, eph._inav ? 1 : 0);
1255
1256 GETBITS(eph._TOEweek, 12)
1257 GETBITS(eph._IODnav, 10)
1258 GETBITS(i, 8)
1259 eph._SISA = accuracyFromIndex(i, eph.type());
1260 GETFLOATSIGN(eph._IDOT, 14, R2R_PI/(double)(1<<30)/(double)(1<<13))
1261 GETBITSFACTOR(i, 14, 60)
[8161]1262 eph._TOC.set(1024 + eph._TOEweek, i);
1263 GETFLOATSIGN(eph._clock_driftrate, 6,
1264 1.0 / (double )(1 << 30) / (double )(1 << 29))
1265 GETFLOATSIGN(eph._clock_drift, 21,
1266 1.0 / (double )(1 << 30) / (double )(1 << 16))
1267 GETFLOATSIGN(eph._clock_bias, 31,
1268 1.0 / (double )(1 << 30) / (double )(1 << 4))
1269 GETFLOATSIGN(eph._Crs, 16, 1.0 / (double )(1 << 5))
[6812]1270 GETFLOATSIGN(eph._Delta_n, 16, R2R_PI/(double)(1<<30)/(double)(1<<13))
1271 GETFLOATSIGN(eph._M0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1272 GETFLOATSIGN(eph._Cuc, 16, 1.0 / (double )(1 << 29))
1273 GETFLOAT(eph._e, 32, 1.0 / (double )(1 << 30) / (double )(1 << 3))
1274 GETFLOATSIGN(eph._Cus, 16, 1.0 / (double )(1 << 29))
1275 GETFLOAT(eph._sqrt_A, 32, 1.0 / (double )(1 << 19))
[6812]1276 GETBITSFACTOR(eph._TOEsec, 14, 60)
1277 /* FIXME: overwrite value, copied from old code */
1278 eph._TOEsec = eph._TOC.gpssec();
[8161]1279 GETFLOATSIGN(eph._Cic, 16, 1.0 / (double )(1 << 29))
[6812]1280 GETFLOATSIGN(eph._OMEGA0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1281 GETFLOATSIGN(eph._Cis, 16, 1.0 / (double )(1 << 29))
[6812]1282 GETFLOATSIGN(eph._i0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1283 GETFLOATSIGN(eph._Crc, 16, 1.0 / (double )(1 << 5))
[6812]1284 GETFLOATSIGN(eph._omega, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
1285 GETFLOATSIGN(eph._OMEGADOT, 24, R2R_PI/(double)(1<<30)/(double)(1<<13))
[8161]1286 GETFLOATSIGN(eph._BGD_1_5A, 10,
1287 1.0 / (double )(1 << 30) / (double )(1 << 2))
1288 if (eph._inav) {
[7006]1289 /* set unused F/NAV values */
[6812]1290 eph._E5aHS = 0.0;
1291 eph._e5aDataInValid = false;
1292
[8161]1293 GETFLOATSIGN(eph._BGD_1_5B, 10,
1294 1.0 / (double )(1 << 30) / (double )(1 << 2))
[6812]1295 GETBITS(eph._E5bHS, 2)
1296 GETBITS(eph._e5bDataInValid, 1)
1297 GETBITS(eph._E1_bHS, 2)
1298 GETBITS(eph._e1DataInValid, 1)
1299 }
[8161]1300 else {
[7006]1301 /* set unused I/NAV values */
[6812]1302 eph._BGD_1_5B = 0.0;
1303 eph._E5bHS = 0.0;
1304 eph._E1_bHS = 0.0;
1305 eph._e1DataInValid = false;
1306 eph._e5bDataInValid = false;
1307
1308 GETBITS(eph._E5aHS, 2)
1309 GETBITS(eph._e5aDataInValid, 1)
1310 }
1311 eph._TOT = 0.9999e9;
1312
1313 emit newGalileoEph(eph);
1314 decoded = true;
1315 }
1316 return decoded;
1317}
1318
1319//
1320////////////////////////////////////////////////////////////////////////////
[8161]1321bool RTCM3Decoder::DecodeBDSEphemeris(unsigned char* data, int size) {
[6812]1322 bool decoded = false;
1323
[8161]1324 if (size == 70) {
[6812]1325 t_ephBDS eph;
1326 int i;
1327 uint64_t numbits = 0, bitfield = 0;
1328
1329 data += 3; /* header */
1330 size -= 6; /* header + crc */
1331 SKIPBITS(12)
1332
1333 eph._receptDateTime = currentDateAndTimeGPS();
1334
1335 GETBITS(i, 6)
1336 eph._prn.set('C', i);
1337
[8161]1338 SKIPBITS(13)
1339 /* week */
[6812]1340 GETBITS(i, 4)
1341 eph._URA = accuracyFromIndex(i, eph.type());
1342 GETFLOATSIGN(eph._IDOT, 14, R2R_PI/(double)(1<<30)/(double)(1<<13))
1343 GETBITS(eph._AODE, 5)
1344 GETBITS(i, 17)
1345 i <<= 3;
[8161]1346 eph._TOC.setBDS(i * 1000);
1347 GETFLOATSIGN(eph._clock_driftrate, 11,
1348 1.0 / (double )(1 << 30) / (double )(1 << 30) / (double )(1 << 6))
1349 GETFLOATSIGN(eph._clock_drift, 22,
1350 1.0 / (double )(1 << 30) / (double )(1 << 20))
1351 GETFLOATSIGN(eph._clock_bias, 24,
1352 1.0 / (double )(1 << 30) / (double )(1 << 3))
[6812]1353 GETBITS(eph._AODC, 5)
[8161]1354 GETFLOATSIGN(eph._Crs, 18, 1.0 / (double )(1 << 6))
[6812]1355 GETFLOATSIGN(eph._Delta_n, 16, R2R_PI/(double)(1<<30)/(double)(1<<13))
1356 GETFLOATSIGN(eph._M0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1357 GETFLOATSIGN(eph._Cuc, 18, 1.0 / (double )(1 << 30) / (double )(1 << 1))
1358 GETFLOAT(eph._e, 32, 1.0 / (double )(1 << 30) / (double )(1 << 3))
1359 GETFLOATSIGN(eph._Cus, 18, 1.0 / (double )(1 << 30) / (double )(1 << 1))
1360 GETFLOAT(eph._sqrt_A, 32, 1.0 / (double )(1 << 19))
[6812]1361 GETBITS(i, 17)
1362 i <<= 3;
1363 eph._TOEsec = i;
[8161]1364 eph._TOE.setBDS(i * 1000);
1365 GETFLOATSIGN(eph._Cic, 18, 1.0 / (double )(1 << 30) / (double )(1 << 1))
[6812]1366 GETFLOATSIGN(eph._OMEGA0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1367 GETFLOATSIGN(eph._Cis, 18, 1.0 / (double )(1 << 30) / (double )(1 << 1))
[6812]1368 GETFLOATSIGN(eph._i0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
[8161]1369 GETFLOATSIGN(eph._Crc, 18, 1.0 / (double )(1 << 6))
[6812]1370 GETFLOATSIGN(eph._omega, 32, R2R_PI/(double)(1<<30)/(double)(1<<1))
1371 GETFLOATSIGN(eph._OMEGADOT, 24, R2R_PI/(double)(1<<30)/(double)(1<<13))
1372 GETFLOATSIGN(eph._TGD1, 10, 0.0000000001)
1373 GETFLOATSIGN(eph._TGD2, 10, 0.0000000001)
1374 GETBITS(eph._SatH1, 1)
1375
[8455]1376 eph._TOT = 0.9999E9;
[6812]1377 emit newBDSEph(eph);
1378 decoded = true;
1379 }
1380 return decoded;
1381}
1382
1383//
1384////////////////////////////////////////////////////////////////////////////
[8200]1385bool RTCM3Decoder::DecodeAntennaReceiver(unsigned char* data, int size) {
1386 char *antenna, anttype[256];
1387 char *dummy;
1388 char *receiver, rectype[256];
1389
1390 int type;
1391
1392 int dnum = -1;
[7875]1393 int antnum = -1;
[8200]1394 int recnum = -1;
[6812]1395 uint64_t numbits = 0, bitfield = 0;
1396
[8200]1397 data += 3; /* header*/
[6812]1398 size -= 6; /* header + crc */
1399
[8200]1400 GETBITS(type, 12)
[6812]1401 SKIPBITS(12)
[7873]1402 GETSTRING(antnum, antenna)
[7875]1403 if (antnum > -1 && antnum < 265) {
[8200]1404 memcpy(anttype, antenna, antnum);
1405 anttype[antnum] = 0;
1406 if (!_antType.contains(anttype)) {
1407 _antType.push_back(anttype);
[7875]1408 }
[7873]1409 }
[8200]1410 if (type == 1033) {
1411 SKIPBITS(8)
1412 GETSTRING(dnum, dummy)
1413 GETSTRING(recnum, receiver)
1414 if (recnum > -1 && recnum < 265) {
1415 memcpy(rectype, receiver, recnum);
1416 rectype[recnum] = 0;
1417 if (!_recType.contains(rectype)) {
1418 _recType.push_back(rectype);
1419 }
1420 }
1421 }
[6812]1422 return true;
1423}
1424
1425//
1426////////////////////////////////////////////////////////////////////////////
[8161]1427bool RTCM3Decoder::DecodeAntennaPosition(unsigned char* data, int size) {
[6812]1428 int type;
1429 uint64_t numbits = 0, bitfield = 0;
1430 double x, y, z;
1431
1432 data += 3; /* header */
1433 size -= 6; /* header + crc */
1434
1435 GETBITS(type, 12)
1436 _antList.push_back(t_antInfo());
1437 _antList.back().type = t_antInfo::ARP;
1438 SKIPBITS(22)
1439 GETBITSSIGN(x, 38)
1440 _antList.back().xx = x * 1e-4;
1441 SKIPBITS(2)
1442 GETBITSSIGN(y, 38)
1443 _antList.back().yy = y * 1e-4;
1444 SKIPBITS(2)
1445 GETBITSSIGN(z, 38)
1446 _antList.back().zz = z * 1e-4;
[8161]1447 if (type == 1006)
1448 {
[6812]1449 double h;
1450 GETBITS(h, 16)
1451 _antList.back().height = h * 1e-4;
1452 _antList.back().height_f = true;
1453 }
[8161]1454 _antList.back().message = type;
[6812]1455
1456 return true;
1457}
1458
[7753]1459//
[6812]1460////////////////////////////////////////////////////////////////////////////
[8161]1461t_irc RTCM3Decoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
[6812]1462 bool decoded = false;
1463
1464 errmsg.clear();
1465
[8161]1466 while (bufLen && _MessageSize < sizeof(_Message)) {
[6812]1467 int l = sizeof(_Message) - _MessageSize;
[8161]1468 if (l > bufLen)
[6812]1469 l = bufLen;
[8161]1470 memcpy(_Message + _MessageSize, buffer, l);
[6812]1471 _MessageSize += l;
1472 bufLen -= l;
1473 buffer += l;
1474 int id;
[8161]1475 while ((id = GetMessage())) {
[6812]1476 /* reset station ID for file loading as it can change */
[8161]1477 if (_rawFile)
[6812]1478 _staID = _rawFile->staID();
1479 /* store the id into the list of loaded blocks */
1480 _typeList.push_back(id);
1481
[6856]1482 /* SSR I+II data handled in another function, already pass the
[6812]1483 * extracted data block. That does no harm, as it anyway skip everything
1484 * else. */
[8161]1485 if ((id >= 1057 && id <= 1068) || (id >= 1240 && id <= 1270)) {
[6812]1486 if (!_coDecoders.contains(_staID.toAscii()))
[7753]1487 _coDecoders[_staID.toAscii()] = new RTCM3coDecoder(_staID);
[6812]1488 RTCM3coDecoder* coDecoder = _coDecoders[_staID.toAscii()];
[8161]1489 if (coDecoder->Decode(reinterpret_cast<char *>(_Message), _BlockSize,
1490 errmsg) == success) {
[6812]1491 decoded = true;
1492 }
1493 }
[8161]1494 else if (id >= 1070 && id <= 1229) /* MSM */ {
1495 if (DecodeRTCM3MSM(_Message, _BlockSize))
[6812]1496 decoded = true;
1497 }
[8161]1498 else {
1499 switch (id) {
1500 case 1001:
1501 case 1003:
1502 emit(newMessage(
1503 QString("%1: Block %2 contain partial data! Ignored!")
1504 .arg(_staID).arg(id).toAscii(), true));
1505 break; /* no use decoding partial data ATM, remove break when data can be used */
1506 case 1002:
1507 case 1004:
1508 if (DecodeRTCM3GPS(_Message, _BlockSize))
1509 decoded = true;
1510 break;
1511 case 1009:
1512 case 1011:
1513 emit(newMessage(
1514 QString("%1: Block %2 contain partial data! Ignored!")
1515 .arg(_staID).arg(id).toAscii(), true));
1516 break; /* no use decoding partial data ATM, remove break when data can be used */
1517 case 1010:
1518 case 1012:
1519 if (DecodeRTCM3GLONASS(_Message, _BlockSize))
1520 decoded = true;
1521 break;
1522 case 1019:
1523 if (DecodeGPSEphemeris(_Message, _BlockSize))
1524 decoded = true;
1525 break;
1526 case 1020:
1527 if (DecodeGLONASSEphemeris(_Message, _BlockSize))
1528 decoded = true;
1529 break;
1530 case 1043:
1531 if (DecodeSBASEphemeris(_Message, _BlockSize))
1532 decoded = true;
1533 break;
1534 case 1044:
1535 if (DecodeQZSSEphemeris(_Message, _BlockSize))
1536 decoded = true;
1537 break;
1538 case 1045:
1539 case 1046:
1540 if (DecodeGalileoEphemeris(_Message, _BlockSize))
1541 decoded = true;
1542 break;
1543 case RTCM3ID_BDS:
1544 if (DecodeBDSEphemeris(_Message, _BlockSize))
1545 decoded = true;
1546 break;
1547 case 1007:
1548 case 1008:
1549 case 1033:
[8200]1550 DecodeAntennaReceiver(_Message, _BlockSize);
[8161]1551 break;
1552 case 1005:
1553 case 1006:
1554 DecodeAntennaPosition(_Message, _BlockSize);
1555 break;
[296]1556 }
1557 }
1558 }
[6812]1559 }
1560 return decoded ? success : failure;
[8161]1561}
1562;
[6812]1563
[7753]1564//
[6812]1565////////////////////////////////////////////////////////////////////////////
[8161]1566uint32_t RTCM3Decoder::CRC24(long size, const unsigned char *buf) {
[6812]1567 uint32_t crc = 0;
1568 int i;
1569
[8161]1570 while (size--) {
[6812]1571 crc ^= (*buf++) << (16);
[8161]1572 for (i = 0; i < 8; i++)
1573 {
[6812]1574 crc <<= 1;
[8161]1575 if (crc & 0x1000000)
[6812]1576 crc ^= 0x01864cfb;
[1021]1577 }
[296]1578 }
[6812]1579 return crc;
1580}
[1021]1581
[7753]1582//
[6812]1583////////////////////////////////////////////////////////////////////////////
[8161]1584int RTCM3Decoder::GetMessage(void) {
[6812]1585 unsigned char *m, *e;
1586 int i;
1587
[8161]1588 m = _Message + _SkipBytes;
1589 e = _Message + _MessageSize;
[6812]1590 _NeedBytes = _SkipBytes = 0;
[8161]1591 while (e - m >= 3) {
1592 if (m[0] == 0xD3) {
1593 _BlockSize = ((m[1] & 3) << 8) | m[2];
1594 if (e - m >= static_cast<int>(_BlockSize + 6)) {
1595 if (static_cast<uint32_t>((m[3 + _BlockSize] << 16)
1596 | (m[3 + _BlockSize + 1] << 8)
1597 | (m[3 + _BlockSize + 2])) == CRC24(_BlockSize + 3, m)) {
1598 _BlockSize += 6;
[6812]1599 _SkipBytes = _BlockSize;
1600 break;
1601 }
1602 else
1603 ++m;
1604 }
[8161]1605 else {
[6812]1606 _NeedBytes = _BlockSize;
1607 break;
1608 }
1609 }
1610 else
1611 ++m;
[658]1612 }
[8161]1613 if (e - m < 3)
[6812]1614 _NeedBytes = 3;
1615
1616 /* copy buffer to front */
1617 i = m - _Message;
[8161]1618 if (i && m < e)
1619 memmove(_Message, m, static_cast<size_t>(_MessageSize - i));
[6812]1620 _MessageSize -= i;
1621
[8161]1622 return !_NeedBytes ? ((_Message[3] << 4) | (_Message[4] >> 4)) : 0;
[296]1623}
[1807]1624
[3001]1625// Time of Corrections
1626//////////////////////////////////////////////////////////////////////////////
1627int RTCM3Decoder::corrGPSEpochTime() const {
[8161]1628 return
1629 _coDecoders.size() > 0 ?
1630 _coDecoders.begin().value()->corrGPSEpochTime() : -1;
[3001]1631}
Note: See TracBrowser for help on using the repository browser.