Changeset 9661 in ntrip
- Timestamp:
- Mar 17, 2022, 10:01:05 AM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9659 r9661 803 803 t_prn refPrnNew = refSatMap[sys]->prn(); 804 804 if (refPrnNew != refPrnOld) { 805 resetAmb(refPrnOld, allObs); 805 resetAmb(refPrnOld, allObs);/* 806 806 if (resetAmb(refPrnOld, allObs) == success) { 807 807 if (OPT->_obsModelType == OPT->DCMcodeBias) { … … 822 822 } 823 823 } 824 } 824 }*/ 825 825 } 826 826 } -
trunk/BNC/src/PPP/pppParlist.cpp
r9660 r9661 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/pppMain.cpp
r9659 r9661 218 218 opt->_obsModelType = t_pppOptions::DCMcodeBias; 219 219 opt->_refSatRequired = true; 220 opt->_noiseCodeBias = 0.1;220 opt->_noiseCodeBias = 1.0; 221 221 opt->_noiseIon = 0.1; 222 222 } … … 224 224 opt->_obsModelType = t_pppOptions::DCMphaseBias; 225 225 opt->_refSatRequired = true; 226 opt->_noisePhaseBias = 0.1;226 opt->_noisePhaseBias = 1.0; 227 227 opt->_noiseIon = 0.1; 228 228 }
Note:
See TracChangeset
for help on using the changeset viewer.