Changeset 9303 in ntrip


Ignore:
Timestamp:
Dec 5, 2020, 11:02:01 PM (3 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppParlist.cpp

    r9289 r9303  
    6464   case clkR:
    6565     _epoSpec = true;
    66      _sigma0  = OPT->_noiseClk;
     66     _sigma0  = OPT->_aprSigClk;
    6767     break;
    6868   case amb:
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r8998 r9303  
    296296
    297297  if (tLC == t_lc::GIM) {
    298     retVal = OPT->_sigmaGIMdiff * OPT->_sigmaGIMdiff;
     298    retVal = OPT->_sigmaGIM * OPT->_sigmaGIM;
    299299  }
    300300
     
    352352  }
    353353  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;
    355358  }
    356359  return sqrt(retVal);
Note: See TracChangeset for help on using the changeset viewer.