Changeset 9657 in ntrip
- Timestamp:
- Mar 15, 2022, 10:20:56 PM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9656 r9657 530 530 //////////////////////////////////////////////////////////////////////////// 531 531 t_irc t_pppFilter::addNoiseToPar(t_pppParam::e_type parType, char sys) { 532 533 532 t_irc irc = failure; 534 533 vector<t_pppParam*> ¶ms = _parlist.params(); … … 537 536 if (par->type() == parType && par->prn().system() == sys) { 538 537 int ind = par->indexNew(); 539 LOG << string(_epoTime) << " ADD IONO_NOISE TO " << par->prn().toString()540 << endl;538 LOG << string(_epoTime) << " ADD " << par->toString() << "_NOISE TO " 539 << par->prn().toString() << endl; 541 540 par->setIndex(ind); 542 541 _QFlt(ind + 1, ind + 1) = par->sigma0() * par->sigma0(); -
trunk/BNC/src/PPP/pppSatObs.cpp
r9654 r9657 344 344 345 345 retVal = sqrt(retVal); 346 347 // De-Weight GLONASS 348 // ----------------- 349 if (_prn.system() == 'R') { 350 retVal *= 2.0; 351 } 352 346 353 347 354 // Elevation-Dependent Weighting -
trunk/BNC/src/pppMain.cpp
r9654 r9657 218 218 opt->_obsModelType = t_pppOptions::DCMcodeBias; 219 219 opt->_refSatRequired = true; 220 opt->_noiseCodeBias = 1.0;220 opt->_noiseCodeBias = 0.01; 221 221 opt->_noiseIon = 0.1; 222 222 } … … 224 224 opt->_obsModelType = t_pppOptions::DCMphaseBias; 225 225 opt->_refSatRequired = true; 226 opt->_noisePhaseBias = 1.0;226 opt->_noisePhaseBias = 0.01; 227 227 opt->_noiseIon = 0.1; 228 228 }
Note:
See TracChangeset
for help on using the changeset viewer.