Changeset 7835 in ntrip
- Timestamp:
- Mar 14, 2016, 2:30:51 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM/RTCM2Decoder.cpp
r7528 r7835 154 154 frqObs1P->_phaseValid = true; 155 155 frqObs1P->_phase = _ObsBlock.resolvedPhase_L1(iSat); 156 frqObs1P->_slipCounter = _ObsBlock.slip_L1[iSat]; 156 //frqObs1P->_slipCounter = _ObsBlock.slip_L1[iSat]; 157 frqObs1P->_slipCounter = -1; // because RTCM2 definition is vice versa to RTCM3 157 158 obs._obs.push_back(frqObs1P); 158 159 … … 163 164 frqObs2P->_phaseValid = true; 164 165 frqObs2P->_phase = _ObsBlock.resolvedPhase_L2(iSat); 165 frqObs2P->_slipCounter = _ObsBlock.slip_L2[iSat]; 166 //frqObs2P->_slipCounter = _ObsBlock.slip_L2[iSat]; 167 frqObs2P->_slipCounter = -1; // because RTCM2 definition is vice versa to RTCM3 166 168 obs._obs.push_back(frqObs2P); 167 169 … … 380 382 frqObs1P->_phaseValid = true; 381 383 frqObs1P->_phase = *obsVal / LAMBDA_1; 382 frqObs1P->_slipCounter = corr->lock1; 384 //frqObs1P->_slipCounter = corr->lock1; 385 frqObs1P->_slipCounter = -1; // because RTCM2 definition is vice versa to RTCM3 383 386 break; 384 387 case 1: // --- L2 --- 385 388 frqObs2P->_phaseValid = true; 386 389 frqObs2P->_phase = *obsVal / LAMBDA_2; 387 frqObs2P->_slipCounter = corr->lock2; 390 //frqObs2P->_slipCounter = corr->lock2; 391 frqObs2P->_slipCounter = -1; // because RTCM2 definition is vice versa to RTCM3 388 392 break; 389 393 case 2: // --- C1 / P1 ---
Note:
See TracChangeset
for help on using the changeset viewer.