1 |
|
---|
2 | /* -------------------------------------------------------------------------
|
---|
3 | * BKG NTRIP Client
|
---|
4 | * -------------------------------------------------------------------------
|
---|
5 | *
|
---|
6 | * Class: rtcm3
|
---|
7 | *
|
---|
8 | * Purpose: RTCM3 Decoder
|
---|
9 | *
|
---|
10 | * Author: L. Mervart
|
---|
11 | *
|
---|
12 | * Created: 24-Aug-2006
|
---|
13 | *
|
---|
14 | * Changes:
|
---|
15 | *
|
---|
16 | * -----------------------------------------------------------------------*/
|
---|
17 |
|
---|
18 | #include <math.h>
|
---|
19 |
|
---|
20 | #include "rtcm3.h"
|
---|
21 |
|
---|
22 | using namespace std;
|
---|
23 |
|
---|
24 | #ifndef isinf
|
---|
25 | # define isinf(x) 0
|
---|
26 | #endif
|
---|
27 |
|
---|
28 | // Constructor
|
---|
29 | ////////////////////////////////////////////////////////////////////////////
|
---|
30 | rtcm3::rtcm3() : GPSDecoder() {
|
---|
31 | memset(&_Parser, 0, sizeof(_Parser));
|
---|
32 | time_t tim;
|
---|
33 | tim = time(0) - ((10*365+2+5)*24*60*60 + LEAPSECONDS);
|
---|
34 | _Parser.GPSWeek = tim/(7*24*60*60);
|
---|
35 | _Parser.GPSTOW = tim%(7*24*60*60);
|
---|
36 | }
|
---|
37 |
|
---|
38 | // Destructor
|
---|
39 | ////////////////////////////////////////////////////////////////////////////
|
---|
40 | rtcm3::~rtcm3() {
|
---|
41 | }
|
---|
42 |
|
---|
43 | //
|
---|
44 | ////////////////////////////////////////////////////////////////////////////
|
---|
45 | void rtcm3::Decode(char* buffer, int bufLen) {
|
---|
46 | for (int ii = 0; ii < bufLen; ii++) {
|
---|
47 |
|
---|
48 | _Parser.Message[_Parser.MessageSize++] = buffer[ii];
|
---|
49 | if (_Parser.MessageSize >= _Parser.NeedBytes) {
|
---|
50 |
|
---|
51 | while(int rr = RTCM3Parser(&_Parser)) {
|
---|
52 |
|
---|
53 | if (!_Parser.init) {
|
---|
54 | HandleHeader(&_Parser);
|
---|
55 | _Parser.init = 1;
|
---|
56 | }
|
---|
57 |
|
---|
58 | if (rr == 2) {
|
---|
59 | cerr << "No valid RINEX! All values are modulo 299792.458!\n";
|
---|
60 | exit(1);
|
---|
61 | }
|
---|
62 |
|
---|
63 | for (int ii = 0; ii < _Parser.Data.numsats; ii++) {
|
---|
64 | Observation* obs = new Observation();
|
---|
65 |
|
---|
66 | //// obs->statID =
|
---|
67 | //// obs->cumuLossOfCont =
|
---|
68 |
|
---|
69 | obs->SVPRN = _Parser.Data.satellites[ii];
|
---|
70 | obs->GPSWeek = _Parser.Data.week;
|
---|
71 | obs->GPSWeeks = (int) (_Parser.Data.timeofweek / 1000.0);
|
---|
72 | obs->sec = fmod(_Parser.Data.timeofweek / 1000.0, 3600.0);
|
---|
73 |
|
---|
74 | for (int jj = 0; jj < _Parser.numdatatypes; jj++) {
|
---|
75 |
|
---|
76 | if ( !(_Parser.Data.dataflags[ii] & _Parser.dataflag[jj])
|
---|
77 | || isnan(_Parser.Data.measdata[ii][_Parser.datapos[jj]])
|
---|
78 | || isinf(_Parser.Data.measdata[ii][_Parser.datapos[jj]]) ) {
|
---|
79 | continue;
|
---|
80 | }
|
---|
81 |
|
---|
82 | if (_Parser.dataflag[jj] & GNSSDF_C1DATA) {
|
---|
83 | obs->C1 = _Parser.Data.measdata[ii][_Parser.datapos[jj]];
|
---|
84 | obs->pCodeIndicator = 0;
|
---|
85 | }
|
---|
86 | else if (_Parser.dataflag[jj] & GNSSDF_P1DATA) {
|
---|
87 | obs->C1 = _Parser.Data.measdata[ii][_Parser.datapos[jj]];
|
---|
88 | obs->pCodeIndicator = 1;
|
---|
89 | }
|
---|
90 | else if (_Parser.dataflag[jj] & GNSSDF_P2DATA) {
|
---|
91 | obs->P2 = _Parser.Data.measdata[ii][_Parser.datapos[jj]];
|
---|
92 | }
|
---|
93 | else if (_Parser.dataflag[jj] & (GNSSDF_L1CDATA|GNSSDF_L1PDATA)) {
|
---|
94 | obs->L1 = _Parser.Data.measdata[ii][_Parser.datapos[jj]];
|
---|
95 | obs->SNR1 = _Parser.Data.snrL1[ii];
|
---|
96 | }
|
---|
97 | else if (_Parser.dataflag[jj] & (GNSSDF_L2CDATA|GNSSDF_L2PDATA)) {
|
---|
98 | obs->L2 = _Parser.Data.measdata[ii][_Parser.datapos[jj]];
|
---|
99 | obs->SNR2 = _Parser.Data.snrL2[ii];
|
---|
100 | }
|
---|
101 | }
|
---|
102 | m_lObsList.push_back(obs);
|
---|
103 | }
|
---|
104 | }
|
---|
105 | }
|
---|
106 | }
|
---|
107 | }
|
---|