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

Last change on this file since 913 was 913, checked in by weber, 16 years ago

* empty log message *

File size: 7.4 KB
Line 
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: 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>
42#include <math.h>
43#include <string.h>
44
45#include "RTCM3Decoder.h"
46#include "RTCM3coDecoder.h"
47#include "bncconst.h"
48#include "bncapp.h"
49
50using namespace std;
51
52#ifndef isinf
53# define isinf(x) 0
54#endif
55
56//
57////////////////////////////////////////////////////////////////////////////
58ephSender::ephSender() {
59 connect(this, SIGNAL(newGPSEph(gpsephemeris*)),
60 (bncApp*) qApp, SLOT(slotNewGPSEph(gpsephemeris*)));
61 connect(this, SIGNAL(newGlonassEph(glonassephemeris*)),
62 (bncApp*) qApp, SLOT(slotNewGlonassEph(glonassephemeris*)));
63}
64
65// Error Handling
66////////////////////////////////////////////////////////////////////////////
67void RTCM3Error(const char*, ...) {
68}
69
70// Constructor
71////////////////////////////////////////////////////////////////////////////
72RTCM3Decoder::RTCM3Decoder(const QString& fileName) : GPSDecoder() {
73
74 const int LEAPSECONDS = 14; /* only needed for approx. time */
75
76// Ensure, that the Decoder uses the "old" convention for the data structure for Rinex2. Perlt
77 _Parser.rinex3 = 0;
78
79 time_t tim;
80 tim = time(0) - ((10*365+2+5)*24*60*60 + LEAPSECONDS);
81
82 memset(&_Parser, 0, sizeof(_Parser));
83 _Parser.GPSWeek = tim/(7*24*60*60);
84 _Parser.GPSTOW = tim%(7*24*60*60);
85
86 // Sub-Decoder for Clock and Orbit Corrections
87 // -------------------------------------------
88 _coDecoder = new RTCM3coDecoder(fileName);
89}
90
91// Destructor
92////////////////////////////////////////////////////////////////////////////
93RTCM3Decoder::~RTCM3Decoder() {
94 delete _coDecoder;
95}
96
97//
98////////////////////////////////////////////////////////////////////////////
99t_irc RTCM3Decoder::Decode(char* buffer, int bufLen) {
100
101 bool decoded = false;
102
103 // Try to decode Clock and Orbit Corrections
104 // -----------------------------------------
105 if ( _coDecoder->Decode(buffer, bufLen) == success ) {
106 decoded = true;
107 }
108
109 // Remaining part decodes the Observations
110 // ---------------------------------------
111 for (int ii = 0; ii < bufLen; ii++) {
112
113 _Parser.Message[_Parser.MessageSize++] = buffer[ii];
114 if (_Parser.MessageSize >= _Parser.NeedBytes) {
115
116 while(int rr = RTCM3Parser(&_Parser)) {
117
118 // GNSS Observations
119 // -----------------
120 if (rr == 1 || rr == 2) {
121 decoded = true;
122
123 if (!_Parser.init) {
124 HandleHeader(&_Parser);
125 _Parser.init = 1;
126 }
127
128 if (rr == 2) {
129 std::cerr << "No valid RINEX! All values are modulo 299792.458!\n";
130 }
131
132 for (int ii = 0; ii < _Parser.Data.numsats; ii++) {
133 p_obs obs = new t_obs();
134 _obsList.push_back(obs);
135 if (_Parser.Data.satellites[ii] <= PRN_GPS_END) {
136 obs->_o.satSys = 'G';
137 obs->_o.satNum = _Parser.Data.satellites[ii];
138 }
139 else if (_Parser.Data.satellites[ii] <= PRN_GLONASS_END) {
140 obs->_o.satSys = 'R';
141 obs->_o.satNum = _Parser.Data.satellites[ii] - PRN_GLONASS_START + 1;
142 }
143 else {
144 obs->_o.satSys = 'S';
145 obs->_o.satNum = _Parser.Data.satellites[ii] - PRN_WAAS_START + 20;
146 }
147 obs->_o.GPSWeek = _Parser.Data.week;
148 obs->_o.GPSWeeks = _Parser.Data.timeofweek / 1000.0;
149
150 for (int jj = 0; jj < _Parser.numdatatypesGPS; jj++) {
151 int v = 0;
152// sepearated declaration and initalization of df and pos. Perlt
153 int df;
154 int pos;
155 df = _Parser.dataflag[jj];
156 pos = _Parser.datapos[jj];
157 if ( (_Parser.Data.dataflags[ii] & df)
158 && !isnan(_Parser.Data.measdata[ii][pos])
159 && !isinf(_Parser.Data.measdata[ii][pos])) {
160 v = 1;
161 }
162 else {
163 df = _Parser.dataflagGPS[jj];
164 pos = _Parser.dataposGPS[jj];
165 if ( (_Parser.Data.dataflags[ii] & df)
166 && !isnan(_Parser.Data.measdata[ii][pos])
167 && !isinf(_Parser.Data.measdata[ii][pos])) {
168 v = 1;
169 }
170 }
171 if (!v) {
172 continue;
173 }
174 else
175 {
176// variables df and pos are used consequently. Perlt
177 if (df & GNSSDF_C1DATA) {
178 obs->_o.C1 = _Parser.Data.measdata[ii][pos];
179 }
180 else if (df & GNSSDF_C2DATA) {
181 obs->_o.C2 = _Parser.Data.measdata[ii][pos];
182 }
183 else if (df & GNSSDF_P1DATA) {
184 obs->_o.P1 = _Parser.Data.measdata[ii][pos];
185 }
186 else if (df & GNSSDF_P2DATA) {
187 obs->_o.P2 = _Parser.Data.measdata[ii][pos];
188 }
189 else if (df & (GNSSDF_L1CDATA|GNSSDF_L1PDATA)) {
190 obs->_o.L1 = _Parser.Data.measdata[ii][pos];
191 obs->_o.SNR1 = _Parser.Data.snrL1[ii];
192 }
193 else if (df & (GNSSDF_L2CDATA|GNSSDF_L2PDATA)) {
194 obs->_o.L2 = _Parser.Data.measdata[ii][pos];
195 obs->_o.SNR2 = _Parser.Data.snrL2[ii];
196 }
197 else if (df & (GNSSDF_S1CDATA|GNSSDF_S1PDATA)) {
198 obs->_o.S1 = _Parser.Data.measdata[ii][pos];
199 }
200 else if (df & (GNSSDF_S2CDATA|GNSSDF_S2PDATA)) {
201 obs->_o.S2 = _Parser.Data.measdata[ii][pos];
202 }
203 }
204 }
205 }
206 }
207
208 // GPS Ephemeris
209 // -------------
210 else if (rr == 1019) {
211 decoded = true;
212 gpsephemeris* ep = new gpsephemeris(_Parser.ephemerisGPS);
213 emit _ephSender.newGPSEph(ep);
214 }
215
216 // GLONASS Ephemeris
217 // -----------------
218 else if (rr == 1020) {
219 decoded = true;
220 glonassephemeris* ep = new glonassephemeris(_Parser.ephemerisGLONASS);
221 emit _ephSender.newGlonassEph(ep);
222 }
223 }
224 }
225 }
226 if (!decoded) {
227 return failure;
228 }
229 else {
230 return success;
231 }
232}
Note: See TracBrowser for help on using the repository browser.