Changeset 9303 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Dec 5, 2020, 11:02:01 PM (4 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppParlist.cpp
r9289 r9303 64 64 case clkR: 65 65 _epoSpec = true; 66 _sigma0 = OPT->_ noiseClk;66 _sigma0 = OPT->_aprSigClk; 67 67 break; 68 68 case amb: -
trunk/BNC/src/PPP/pppSatObs.cpp
r8998 r9303 296 296 297 297 if (tLC == t_lc::GIM) { 298 retVal = OPT->_sigmaGIM diff * OPT->_sigmaGIMdiff;298 retVal = OPT->_sigmaGIM * OPT->_sigmaGIM; 299 299 } 300 300 … … 352 352 } 353 353 if (tLC == t_lc::GIM) { 354 retVal = 3.0 * OPT->_sigmaGIMdiff * OPT->_sigmaGIMdiff; 354 retVal = 3.0 * OPT->_sigmaGIM * OPT->_sigmaGIM; 355 } 356 if (tLC == t_lc::Tz0) { 357 retVal = 3.0 * OPT->_sigmaTz0 * OPT->_sigmaTz0; 355 358 } 356 359 return sqrt(retVal);
Note:
See TracChangeset
for help on using the changeset viewer.