Changeset 9659 in ntrip
- Timestamp:
- Mar 16, 2022, 2:39:32 PM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9657 r9659 536 536 if (par->type() == parType && par->prn().system() == sys) { 537 537 int ind = par->indexNew(); 538 LOG << string(_epoTime) << " ADD " << par->toString() << "_NOISE TO " 539 << par->prn().toString() << endl; 538 LOG << string(_epoTime) << " ADD NOISE TO " << par->toString() << endl; 540 539 par->setIndex(ind); 541 540 _QFlt(ind + 1, ind + 1) = par->sigma0() * par->sigma0(); -
trunk/BNC/src/PPP/pppParlist.cpp
r9644 r9659 601 601 required.push_back(new t_pppParam(t_pppParam::cBiasG2, t_prn(), t_lc::c2)); 602 602 } 603 } 603 }/* 604 604 if (_usedSystems.contains('R')) { 605 605 lc = OPT->LCs('R'); … … 610 610 required.push_back(new t_pppParam(t_pppParam::cBiasR2, t_prn(), t_lc::c2)); 611 611 } 612 } 612 }*/ 613 613 if (_usedSystems.contains('E')) { 614 614 lc = OPT->LCs('E'); … … 644 644 required.push_back(new t_pppParam(t_pppParam::pBiasG2, t_prn(), t_lc::l2)); 645 645 } 646 } 646 }/* 647 647 if (_usedSystems.contains('R')) { 648 648 lc = OPT->LCs('R'); … … 653 653 required.push_back(new t_pppParam(t_pppParam::pBiasR2, t_prn(), t_lc::l2)); 654 654 } 655 } 655 }*/ 656 656 if (_usedSystems.contains('E')) { 657 657 lc = OPT->LCs('E'); -
trunk/BNC/src/PPP/pppSatObs.cpp
r9657 r9659 347 347 // De-Weight GLONASS 348 348 // ----------------- 349 if (_prn.system() == 'R') { 350 retVal *= 2.0; 349 if (_prn.system() == 'R' && 350 (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 351 retVal *= 5.0; 351 352 } 352 353 -
trunk/BNC/src/pppMain.cpp
r9657 r9659 218 218 opt->_obsModelType = t_pppOptions::DCMcodeBias; 219 219 opt->_refSatRequired = true; 220 opt->_noiseCodeBias = 0. 01;220 opt->_noiseCodeBias = 0.1; 221 221 opt->_noiseIon = 0.1; 222 222 } … … 224 224 opt->_obsModelType = t_pppOptions::DCMphaseBias; 225 225 opt->_refSatRequired = true; 226 opt->_noisePhaseBias = 0. 01;226 opt->_noisePhaseBias = 0.1; 227 227 opt->_noiseIon = 0.1; 228 228 }
Note:
See TracChangeset
for help on using the changeset viewer.