Changeset 9562 in ntrip for trunk/BNC/src
- Timestamp:
- Dec 3, 2021, 3:25:41 PM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9557 r9562 355 355 if (par) { 356 356 par->setAmbResetCandidate(); 357 obs->setOutlier(); 358 } 359 else { 360 obs->setOutlier(); 357 361 } 358 362 } … … 782 786 _xFlt = _datumTrafo->D21() * xFltOld; 783 787 784 #ifdef BNC_DEBUG_PPP785 //LOG << "xFltOld:\n" << xFltOld << endl;786 //LOG << "xFlt :\n" << _xFlt << endl;787 #endif788 //#ifdef BNC_DEBUG_PPP 789 LOG << "xFltOld:\n" << xFltOld << endl; 790 LOG << "xFlt :\n" << _xFlt << endl; 791 //#endif 788 792 789 793 // Reset Ambiguities after Datum Transformation -
trunk/BNC/src/PPP/pppSatObs.cpp
r9561 r9562 68 68 if (OPT->_obsModelType == OPT->DCMcodeBias || 69 69 OPT->_obsModelType == OPT->DCMphaseBias) { 70 // at the moment only one code or phase bias per system (G, E,C)/modulation considered,71 preferredAttrib = "G:12&W R:12&P CE:1&CX E:5&QX C:26&I";70 // at the moment only one code or phase bias per system (G,R,E,C)/modulation considered, 71 preferredAttrib = "G:12&W R:12&P E:1&CX E:5&QX C:26&I"; 72 72 } 73 73 … … 313 313 // De-Weight GLONASS code measurements 314 314 // ----------------------------------- 315 if (_prn.system() == 'R' && t_lc::includesCode(tLC) ) { 315 if (_prn.system() == 'R' && 316 (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC) )) { 316 317 retVal *= 5.0; 318 } 319 if (_prn.system() == 'C' && 320 (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC) )) { 321 retVal *= 2.0; 317 322 } 318 323 -
trunk/BNC/src/pppMain.cpp
r9561 r9562 216 216 opt->_obsModelType = t_pppOptions::DCMcodeBias; 217 217 opt->_refSatRequired = true; 218 opt->_noiseCodeBias = 100 .0;218 opt->_noiseCodeBias = 1000.0; 219 219 opt->_noiseIon = 0.1; 220 220 } … … 222 222 opt->_obsModelType = t_pppOptions::DCMphaseBias; 223 223 opt->_refSatRequired = true; 224 opt->_noisePhaseBias = 100 .0;224 opt->_noisePhaseBias = 1000.0; 225 225 opt->_noiseIon = 0.1; 226 226 }
Note:
See TracChangeset
for help on using the changeset viewer.