Changeset 9637 in ntrip
- Timestamp:
- Mar 2, 2022, 3:14:30 PM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppSatObs.cpp
r9634 r9637 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
r9636 r9637 206 206 opt->_obsModelType = t_pppOptions::PPPRTK; 207 207 opt->_pseudoObsIono = false; 208 opt->_noiseIon = 1.0;208 opt->_noiseIon = 0.1; 209 209 } 210 210 else if (settings.value("PPP/modelObs").toString() == "Uncombined PPP") { 211 211 opt->_obsModelType = t_pppOptions::UncombPPP; 212 opt->_noiseIon = 1.0;212 opt->_noiseIon = 0.1; 213 213 if (opt->_pseudoObsIono) { 214 214 opt->_refSatRequired = true; … … 219 219 opt->_refSatRequired = true; 220 220 opt->_noiseCodeBias = 0.1; 221 opt->_noiseIon = 1.0;221 opt->_noiseIon = 0.1; 222 222 } 223 223 else if (settings.value("PPP/modelObs").toString() == "DCM with Phase Biases") { … … 225 225 opt->_refSatRequired = true; 226 226 opt->_noisePhaseBias = 0.1; 227 opt->_noiseIon = 1.0;227 opt->_noiseIon = 0.1; 228 228 } 229 229 #endif
Note:
See TracChangeset
for help on using the changeset viewer.