Changeset 9654 in ntrip
- Timestamp:
- Mar 14, 2022, 11:08:59 AM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r9642 r9654 805 805 t_prn refPrnNew = refSatMap[sys]->prn(); 806 806 if (refPrnNew != refPrnOld) { 807 resetAmb(refPrnOld, allObs);/* 807 808 if (resetAmb(refPrnOld, allObs) == success) { 808 809 if (OPT->_obsModelType == OPT->DCMcodeBias) { … … 823 824 } 824 825 } 825 } 826 }*/ 826 827 } 827 828 } -
trunk/BNC/src/PPP/pppSatObs.cpp
r9649 r9654 344 344 345 345 retVal = sqrt(retVal); 346 347 // De-Weight GLONASS348 // -----------------349 if (_prn.system() == 'R') {350 retVal *= 5.0;351 }352 346 353 347 // Elevation-Dependent Weighting -
trunk/BNC/src/pppMain.cpp
r9649 r9654 218 218 opt->_obsModelType = t_pppOptions::DCMcodeBias; 219 219 opt->_refSatRequired = true; 220 opt->_noiseCodeBias = 1 0.0;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 = 1 0.0;226 opt->_noisePhaseBias = 1.0; 227 227 opt->_noiseIon = 0.1; 228 228 }
Note:
See TracChangeset
for help on using the changeset viewer.