Changeset 9619 in ntrip
- Timestamp:
- Jan 24, 2022, 11:46:43 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/pppMain.cpp
r9618 r9619 206 206 opt->_obsModelType = t_pppOptions::PPPRTK; 207 207 opt->_pseudoObsIono = false; 208 opt->_noiseIon = 10.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 = 10.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 = 100.0; 221 opt->_noiseIon = 10.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 = 100.0; 227 opt->_noiseIon = 10.0;227 opt->_noiseIon = 0.1; 228 228 } 229 229 #endif
Note:
See TracChangeset
for help on using the changeset viewer.