- Timestamp:
- Jan 6, 2022, 10:37:39 AM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r9584 r9585 376 376 // 377 377 ////////////////////////////////////////////////////////////////////////////// 378 void t_pppClient::finish(t_irc irc, int ind) { LOG << "t_pppClient::finish(" << irc << ") " << ind << endl; 378 void t_pppClient::finish(t_irc irc, int ind) { 379 380 LOG << "t_pppClient::finish(" << ind << "): " << irc << endl; 379 381 380 382 clearObs(); -
trunk/BNC/src/PPP/pppSatObs.cpp
r9583 r9585 311 311 312 312 retVal = sqrt(retVal); 313 314 315 // De-Weight GLONASS code measurements 316 // ----------------------------------- 317 if (_prn.system() == 'R' && t_lc::includesCode(tLC)) { 318 retVal *= 5.0; 319 } 313 320 314 321 // Elevation-Dependent Weighting -
trunk/BNC/src/pppMain.cpp
r9584 r9585 216 216 opt->_obsModelType = t_pppOptions::DCMcodeBias; 217 217 opt->_refSatRequired = true; 218 opt->_noiseCodeBias = 1 .0;218 opt->_noiseCodeBias = 10.0; 219 219 opt->_noiseIon = 0.1; 220 220 } … … 222 222 opt->_obsModelType = t_pppOptions::DCMphaseBias; 223 223 opt->_refSatRequired = true; 224 opt->_noisePhaseBias = 0.1;224 opt->_noisePhaseBias = 10.0; 225 225 opt->_noiseIon = 0.1; 226 226 } … … 421 421 opt->_aprSigAmb = 1000.0; 422 422 opt->_aprSigClk = 1000.0; 423 opt->_aprSigIon = 10 .0;424 opt->_aprSigCodeBias = 10 .0;425 opt->_aprSigPhaseBias = 10 .0;423 opt->_aprSigIon = 100.0; 424 opt->_aprSigCodeBias = 100.0; 425 opt->_aprSigPhaseBias = 100.0; 426 426 427 427 _options << opt;
Note:
See TracChangeset
for help on using the changeset viewer.