[297] | 1 | // Part of BNC, a utility for retrieving decoding and
|
---|
[464] | 2 | // converting GNSS data streams from NTRIP broadcasters.
|
---|
[242] | 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.
|
---|
[242] | 24 |
|
---|
[464] | 25 | /* -------------------------------------------------------------------------
|
---|
| 26 | * BKG NTRIP Client
|
---|
| 27 | * -------------------------------------------------------------------------
|
---|
| 28 | *
|
---|
| 29 | * Class: RTCM2Decoder
|
---|
| 30 | *
|
---|
| 31 | * Purpose: RTCM2 Decoder
|
---|
| 32 | *
|
---|
| 33 | * Author: L. Mervart
|
---|
| 34 | *
|
---|
| 35 | * Created: 24-Aug-2006
|
---|
| 36 | *
|
---|
| 37 | * Changes:
|
---|
| 38 | *
|
---|
| 39 | * -----------------------------------------------------------------------*/
|
---|
| 40 |
|
---|
[1044] | 41 | #include <math.h>
|
---|
| 42 | #include <sstream>
|
---|
| 43 | #include <iomanip>
|
---|
[1218] | 44 | #include <set>
|
---|
[1044] | 45 |
|
---|
[242] | 46 | #include "../bncutils.h"
|
---|
[1044] | 47 | #include "rtcm_utils.h"
|
---|
[242] | 48 | #include "GPSDecoder.h"
|
---|
[243] | 49 | #include "RTCM2Decoder.h"
|
---|
[242] | 50 |
|
---|
| 51 | using namespace std;
|
---|
[1044] | 52 | using namespace rtcm2;
|
---|
[242] | 53 |
|
---|
| 54 | //
|
---|
| 55 | // Constructor
|
---|
| 56 | //
|
---|
| 57 |
|
---|
[1044] | 58 | RTCM2Decoder::RTCM2Decoder(const std::string& ID) {
|
---|
| 59 | _ID = ID;
|
---|
[242] | 60 | }
|
---|
| 61 |
|
---|
| 62 | //
|
---|
| 63 | // Destructor
|
---|
| 64 | //
|
---|
| 65 |
|
---|
| 66 | RTCM2Decoder::~RTCM2Decoder() {
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[1044] | 69 |
|
---|
[242] | 70 | //
|
---|
[1044] | 71 | t_irc RTCM2Decoder::getStaCrd(double& xx, double& yy, double& zz) {
|
---|
| 72 | if ( !_msg03.validMsg ) {
|
---|
| 73 | return failure;
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | xx = _msg03.x + (_msg22.validMsg ? _msg22.dL1[0] : 0.0);
|
---|
| 77 | yy = _msg03.y + (_msg22.validMsg ? _msg22.dL1[1] : 0.0);
|
---|
| 78 | zz = _msg03.z + (_msg22.validMsg ? _msg22.dL1[2] : 0.0);
|
---|
[242] | 79 |
|
---|
[1044] | 80 | return success;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
[1167] | 83 | //
|
---|
| 84 | t_irc RTCM2Decoder::getStaCrd(double& xx, double& yy, double& zz,
|
---|
| 85 | double& dx1, double& dy1, double& dz1,
|
---|
| 86 | double& dx2, double& dy2, double& dz2) {
|
---|
| 87 | xx = _msg03.x;
|
---|
| 88 | yy = _msg03.y;
|
---|
| 89 | zz = _msg03.z;
|
---|
[1044] | 90 |
|
---|
[1167] | 91 | dx1 = (_msg22.validMsg ? _msg22.dL1[0] : 0.0);
|
---|
| 92 | dy1 = (_msg22.validMsg ? _msg22.dL1[1] : 0.0);
|
---|
| 93 | dz1 = (_msg22.validMsg ? _msg22.dL1[2] : 0.0);
|
---|
| 94 |
|
---|
| 95 | dx2 = (_msg22.validMsg ? _msg22.dL2[0] : 0.0);
|
---|
| 96 | dy2 = (_msg22.validMsg ? _msg22.dL2[1] : 0.0);
|
---|
| 97 | dz2 = (_msg22.validMsg ? _msg22.dL2[2] : 0.0);
|
---|
| 98 |
|
---|
| 99 | return success;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 |
|
---|
[1044] | 103 | //
|
---|
[1218] | 104 | t_irc RTCM2Decoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
|
---|
[242] | 105 |
|
---|
[1218] | 106 | errmsg.clear();
|
---|
| 107 |
|
---|
[242] | 108 | _buffer.append(buffer, bufLen);
|
---|
| 109 | int refWeek;
|
---|
| 110 | double refSecs;
|
---|
| 111 | currentGPSWeeks(refWeek, refSecs);
|
---|
[702] | 112 | bool decoded = false;
|
---|
[242] | 113 |
|
---|
| 114 | while(true) {
|
---|
| 115 | _PP.getPacket(_buffer);
|
---|
| 116 | if (!_PP.valid()) {
|
---|
[702] | 117 | if (decoded) {
|
---|
| 118 | return success;
|
---|
| 119 | } else {
|
---|
| 120 | return failure;
|
---|
| 121 | }
|
---|
[242] | 122 | }
|
---|
[1268] | 123 |
|
---|
| 124 | // Store message number
|
---|
| 125 | _typeList.push_back(_PP.ID());
|
---|
[242] | 126 |
|
---|
| 127 | if ( _PP.ID()==18 || _PP.ID()==19 ) {
|
---|
| 128 |
|
---|
| 129 | _ObsBlock.extract(_PP);
|
---|
| 130 |
|
---|
| 131 | if (_ObsBlock.valid()) {
|
---|
[702] | 132 | decoded = true;
|
---|
[242] | 133 |
|
---|
| 134 | int epochWeek;
|
---|
| 135 | double epochSecs;
|
---|
| 136 | _ObsBlock.resolveEpoch(refWeek, refSecs, epochWeek, epochSecs);
|
---|
| 137 |
|
---|
| 138 | for (int iSat=0; iSat < _ObsBlock.nSat; iSat++) {
|
---|
[2711] | 139 | t_obs obs;
|
---|
[341] | 140 | if (_ObsBlock.PRN[iSat] > 100) {
|
---|
[2711] | 141 | obs.satNum = _ObsBlock.PRN[iSat] % 100;
|
---|
| 142 | obs.satSys = 'R';
|
---|
[1044] | 143 | }
|
---|
| 144 | else {
|
---|
[2711] | 145 | obs.satNum = _ObsBlock.PRN[iSat];
|
---|
| 146 | obs.satSys = 'G';
|
---|
[1044] | 147 | }
|
---|
[2711] | 148 | obs.GPSWeek = epochWeek;
|
---|
| 149 | obs.GPSWeeks = epochSecs;
|
---|
[4403] | 150 | obs.setMeasdata("C1", 2.0, _ObsBlock.rng_C1[iSat]);
|
---|
| 151 | obs.setMeasdata("P1", 2.0, _ObsBlock.rng_P1[iSat]);
|
---|
| 152 | obs.setMeasdata("P2", 2.0, _ObsBlock.rng_P2[iSat]);
|
---|
| 153 | obs.setMeasdata("L1", 2.0, _ObsBlock.resolvedPhase_L1(iSat));
|
---|
| 154 | obs.setMeasdata("L2", 2.0, _ObsBlock.resolvedPhase_L2(iSat));
|
---|
[2711] | 155 | obs.slip_cnt_L1 = _ObsBlock.slip_L1[iSat];
|
---|
| 156 | obs.slip_cnt_L2 = _ObsBlock.slip_L2[iSat];
|
---|
| 157 |
|
---|
| 158 | _obsList.push_back(obs);
|
---|
[242] | 159 | }
|
---|
| 160 | _ObsBlock.clear();
|
---|
| 161 | }
|
---|
| 162 | }
|
---|
[1044] | 163 |
|
---|
| 164 | else if ( _PP.ID() == 20 || _PP.ID() == 21 ) {
|
---|
| 165 | _msg2021.extract(_PP);
|
---|
| 166 |
|
---|
| 167 | if (_msg2021.valid()) {
|
---|
[1045] | 168 | decoded = true;
|
---|
[1218] | 169 | translateCorr2Obs(errmsg);
|
---|
[1044] | 170 | }
|
---|
| 171 | }
|
---|
| 172 |
|
---|
| 173 | else if ( _PP.ID() == 3 ) {
|
---|
| 174 | _msg03.extract(_PP);
|
---|
| 175 | }
|
---|
| 176 |
|
---|
| 177 | else if ( _PP.ID() == 22 ) {
|
---|
| 178 | _msg22.extract(_PP);
|
---|
| 179 | }
|
---|
[1268] | 180 |
|
---|
[1269] | 181 | else if ( _PP.ID() == 23 ) {
|
---|
| 182 | _msg23.extract(_PP);
|
---|
| 183 | }
|
---|
[1268] | 184 |
|
---|
[1269] | 185 | else if ( _PP.ID() == 24 ) {
|
---|
| 186 | _msg24.extract(_PP);
|
---|
| 187 | }
|
---|
[1268] | 188 |
|
---|
[1269] | 189 | // Output for RTCM scan
|
---|
| 190 | if ( _PP.ID() == 3 ) {
|
---|
| 191 | if ( _msg03.validMsg ) {
|
---|
| 192 | _antList.push_back(t_antInfo());
|
---|
| 193 |
|
---|
| 194 | this->getStaCrd(_antList.back().xx, _antList.back().yy, _antList.back().zz);
|
---|
| 195 |
|
---|
| 196 | _antList.back().type = t_antInfo::APC;
|
---|
| 197 | _antList.back().message = _PP.ID();
|
---|
| 198 | }
|
---|
[1268] | 199 | }
|
---|
[1269] | 200 | else if ( _PP.ID() == 23 ) {
|
---|
| 201 | if ( _msg23.validMsg ) {
|
---|
| 202 | _antType.push_back(_msg23.antType.c_str());
|
---|
| 203 | }
|
---|
| 204 | }
|
---|
| 205 | else if ( _PP.ID() == 24 ) {
|
---|
| 206 | if ( _msg24.validMsg ) {
|
---|
| 207 | _antList.push_back(t_antInfo());
|
---|
| 208 |
|
---|
| 209 | _antList.back().xx = _msg24.x;
|
---|
| 210 | _antList.back().yy = _msg24.y;
|
---|
| 211 | _antList.back().zz = _msg24.z;
|
---|
[3594] | 212 |
|
---|
| 213 | _antList.back().height_f = true;
|
---|
| 214 | _antList.back().height = _msg24.h;
|
---|
[1269] | 215 |
|
---|
| 216 | _antList.back().type = t_antInfo::ARP;
|
---|
| 217 | _antList.back().message = _PP.ID();
|
---|
| 218 | }
|
---|
| 219 | }
|
---|
[242] | 220 | }
|
---|
[649] | 221 | return success;
|
---|
[242] | 222 | }
|
---|
| 223 |
|
---|
[1218] | 224 | void RTCM2Decoder::translateCorr2Obs(vector<string>& errmsg) {
|
---|
[1044] | 225 |
|
---|
[3580] | 226 | QMutexLocker locker(&_mutex);
|
---|
| 227 |
|
---|
[1044] | 228 | if ( !_msg03.validMsg || !_msg2021.valid() ) {
|
---|
| 229 | return;
|
---|
| 230 | }
|
---|
| 231 |
|
---|
| 232 | double stax = _msg03.x + (_msg22.validMsg ? _msg22.dL1[0] : 0.0);
|
---|
| 233 | double stay = _msg03.y + (_msg22.validMsg ? _msg22.dL1[1] : 0.0);
|
---|
| 234 | double staz = _msg03.z + (_msg22.validMsg ? _msg22.dL1[2] : 0.0);
|
---|
| 235 |
|
---|
| 236 | int refWeek;
|
---|
| 237 | double refSecs;
|
---|
| 238 | currentGPSWeeks(refWeek, refSecs);
|
---|
| 239 |
|
---|
| 240 | // Resolve receiver time of measurement (see RTCM 2.3, page 4-42, Message 18, Note 1)
|
---|
| 241 | // ----------------------------------------------------------------------------------
|
---|
| 242 | double hoursec_est = _msg2021.hoursec(); // estimated time of measurement
|
---|
| 243 | double hoursec_rcv = rint(hoursec_est * 1e2) / 1e2; // receiver clock reading at hoursec_est
|
---|
| 244 | double rcv_clk_bias = (hoursec_est - hoursec_rcv) * c_light;
|
---|
| 245 |
|
---|
| 246 | int GPSWeek;
|
---|
| 247 | double GPSWeeks;
|
---|
| 248 | resolveEpoch(hoursec_est, refWeek, refSecs,
|
---|
| 249 | GPSWeek, GPSWeeks);
|
---|
| 250 |
|
---|
| 251 | int GPSWeek_rcv;
|
---|
| 252 | double GPSWeeks_rcv;
|
---|
| 253 | resolveEpoch(hoursec_rcv, refWeek, refSecs,
|
---|
| 254 | GPSWeek_rcv, GPSWeeks_rcv);
|
---|
| 255 |
|
---|
| 256 | // Loop over all satellites
|
---|
| 257 | // ------------------------
|
---|
| 258 | for (RTCM2_2021::data_iterator icorr = _msg2021.data.begin();
|
---|
| 259 | icorr != _msg2021.data.end(); icorr++) {
|
---|
| 260 | const RTCM2_2021::HiResCorr* corr = icorr->second;
|
---|
| 261 |
|
---|
[1218] | 262 | // beg test
|
---|
| 263 | if ( corr->PRN >= 200 ) {
|
---|
| 264 | continue;
|
---|
| 265 | }
|
---|
| 266 | // end test
|
---|
| 267 |
|
---|
[3562] | 268 | QString prn;
|
---|
| 269 | if (corr->PRN < 200) {
|
---|
| 270 | prn = 'G' + QString("%1").arg(corr->PRN, 2, 10, QChar('0'));
|
---|
| 271 | }
|
---|
| 272 | else {
|
---|
| 273 | prn = 'R' + QString("%1").arg(corr->PRN - 200, 2, 10, QChar('0'));
|
---|
| 274 | }
|
---|
[1218] | 275 |
|
---|
[3562] | 276 | const t_ephPair* ePair = ephPair(prn);
|
---|
[1044] | 277 |
|
---|
| 278 | double L1 = 0;
|
---|
| 279 | double L2 = 0;
|
---|
| 280 | double P1 = 0;
|
---|
| 281 | double P2 = 0;
|
---|
| 282 | string obsT = "";
|
---|
| 283 |
|
---|
| 284 | // new observation
|
---|
[2710] | 285 | t_obs* new_obs = 0;
|
---|
[1044] | 286 |
|
---|
[1218] | 287 | // missing IOD
|
---|
| 288 | vector<string> missingIOD;
|
---|
| 289 | vector<string> hasIOD;
|
---|
[1044] | 290 | for (unsigned ii = 0; ii < 4; ii++) {
|
---|
| 291 | int IODcorr = 0;
|
---|
| 292 | double corrVal = 0;
|
---|
| 293 | const t_eph* eph = 0;
|
---|
| 294 | double* obsVal = 0;
|
---|
| 295 |
|
---|
| 296 | switch (ii) {
|
---|
| 297 | case 0: // --- L1 ---
|
---|
| 298 | IODcorr = corr->IODp1;
|
---|
| 299 | corrVal = corr->phase1 * LAMBDA_1;
|
---|
| 300 | obsVal = &L1;
|
---|
| 301 | obsT = "L1";
|
---|
| 302 | break;
|
---|
| 303 | case 1: // --- L2 ---
|
---|
| 304 | IODcorr = corr->IODp2;
|
---|
| 305 | corrVal = corr->phase2 * LAMBDA_2;
|
---|
| 306 | obsVal = &L2;
|
---|
| 307 | obsT = "L2";
|
---|
| 308 | break;
|
---|
| 309 | case 2: // --- P1 ---
|
---|
| 310 | IODcorr = corr->IODr1;
|
---|
| 311 | corrVal = corr->range1;
|
---|
| 312 | obsVal = &P1;
|
---|
| 313 | obsT = "P1";
|
---|
| 314 | break;
|
---|
| 315 | case 3: // --- P2 ---
|
---|
| 316 | IODcorr = corr->IODr2;
|
---|
| 317 | corrVal = corr->range2;
|
---|
| 318 | obsVal = &P2;
|
---|
| 319 | obsT = "P2";
|
---|
| 320 | break;
|
---|
| 321 | default:
|
---|
| 322 | continue;
|
---|
| 323 | }
|
---|
| 324 |
|
---|
[1299] | 325 | // Select corresponding ephemerides
|
---|
[3562] | 326 | if (ePair) {
|
---|
| 327 | if (ePair->last && ePair->last->IOD() == IODcorr) {
|
---|
| 328 | eph = ePair->last;
|
---|
| 329 | }
|
---|
| 330 | else if (ePair->prev && ePair->prev->IOD() == IODcorr) {
|
---|
| 331 | eph = ePair->prev;
|
---|
| 332 | }
|
---|
[1299] | 333 | }
|
---|
[1218] | 334 |
|
---|
| 335 | if ( eph ) {
|
---|
| 336 | ostringstream msg;
|
---|
| 337 | msg << obsT << ':' << setw(3) << eph->IOD();
|
---|
| 338 | hasIOD.push_back(msg.str());
|
---|
| 339 |
|
---|
| 340 |
|
---|
[1044] | 341 | int GPSWeek_tot;
|
---|
| 342 | double GPSWeeks_tot;
|
---|
| 343 | double rho, xSat, ySat, zSat, clkSat;
|
---|
| 344 | cmpRho(eph, stax, stay, staz,
|
---|
| 345 | GPSWeek, GPSWeeks,
|
---|
| 346 | rho, GPSWeek_tot, GPSWeeks_tot,
|
---|
| 347 | xSat, ySat, zSat, clkSat);
|
---|
| 348 |
|
---|
| 349 | *obsVal = rho - corrVal + rcv_clk_bias - clkSat;
|
---|
| 350 |
|
---|
| 351 | if ( *obsVal == 0 ) *obsVal = ZEROVALUE;
|
---|
| 352 |
|
---|
| 353 | // Allocate new memory
|
---|
| 354 | // -------------------
|
---|
| 355 | if ( !new_obs ) {
|
---|
| 356 | new_obs = new t_obs();
|
---|
| 357 |
|
---|
[2709] | 358 | new_obs->StatID[0] = '\x0';
|
---|
| 359 | new_obs->satSys = (corr->PRN < 200 ? 'G' : 'R');
|
---|
| 360 | new_obs->satNum = (corr->PRN < 200 ? corr->PRN : corr->PRN - 200);
|
---|
[1044] | 361 |
|
---|
[2709] | 362 | new_obs->GPSWeek = GPSWeek_rcv;
|
---|
| 363 | new_obs->GPSWeeks = GPSWeeks_rcv;
|
---|
[1044] | 364 | }
|
---|
| 365 |
|
---|
| 366 | // Store estimated measurements
|
---|
| 367 | // ----------------------------
|
---|
| 368 | switch (ii) {
|
---|
| 369 | case 0: // --- L1 ---
|
---|
[4403] | 370 | new_obs->setMeasdata("L1", 2.0, *obsVal / LAMBDA_1);
|
---|
[2709] | 371 | new_obs->slip_cnt_L1 = corr->lock1;
|
---|
[1044] | 372 | break;
|
---|
| 373 | case 1: // --- L2 ---
|
---|
[4403] | 374 | new_obs->setMeasdata("L2", 2.0, *obsVal / LAMBDA_2);
|
---|
[2709] | 375 | new_obs->slip_cnt_L2 = corr->lock2;
|
---|
[1044] | 376 | break;
|
---|
| 377 | case 2: // --- C1 / P1 ---
|
---|
| 378 | if ( corr->Pind1 )
|
---|
[4403] | 379 | new_obs->setMeasdata("P1", 2.0, *obsVal);
|
---|
[1044] | 380 | else
|
---|
[4403] | 381 | new_obs->setMeasdata("C1", 2.0, *obsVal);
|
---|
[1044] | 382 | break;
|
---|
| 383 | case 3: // --- C2 / P2 ---
|
---|
| 384 | if ( corr->Pind2 )
|
---|
[4403] | 385 | new_obs->setMeasdata("P2", 2.0, *obsVal);
|
---|
[1044] | 386 | else
|
---|
[4403] | 387 | new_obs->setMeasdata("C2", 2.0, *obsVal);
|
---|
[1044] | 388 | break;
|
---|
| 389 | default:
|
---|
| 390 | continue;
|
---|
| 391 | }
|
---|
| 392 | }
|
---|
[1218] | 393 | else if ( IODcorr != 0 ) {
|
---|
| 394 | ostringstream msg;
|
---|
| 395 | msg << obsT << ':' << setw(3) << IODcorr;
|
---|
| 396 | missingIOD.push_back(msg.str());
|
---|
| 397 | }
|
---|
[1044] | 398 | } // loop over frequencies
|
---|
[1218] | 399 |
|
---|
| 400 | // Error report
|
---|
| 401 | if ( missingIOD.size() ) {
|
---|
| 402 | ostringstream missingIODstr;
|
---|
| 403 |
|
---|
| 404 | copy(missingIOD.begin(), missingIOD.end(), ostream_iterator<string>(missingIODstr, " "));
|
---|
| 405 |
|
---|
[3562] | 406 | errmsg.push_back("missing eph for " + string(prn.toAscii().data()) + " , IODs " + missingIODstr.str());
|
---|
[1218] | 407 | }
|
---|
| 408 |
|
---|
| 409 | // Store new observation
|
---|
[1044] | 410 | if ( new_obs ) {
|
---|
[2711] | 411 | _obsList.push_back(*new_obs);
|
---|
[2867] | 412 | delete new_obs;
|
---|
[1044] | 413 | }
|
---|
| 414 | }
|
---|
| 415 | }
|
---|