Changeset 9967 in ntrip for trunk


Ignore:
Timestamp:
Feb 14, 2023, 2:23:13 PM (14 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r9704 r9967  
    256256          }
    257257          ll[iObs] = obs->obsValue(tLC) - obs->cmpValue(tLC)
    258               - DotProduct(_x0, AA.Row(iObs + 1));
     258                   - DotProduct(_x0, AA.Row(iObs + 1));
    259259          PP[iObs] = 1.0 / (obs->sigma(tLC) * obs->sigma(tLC));
    260260        }
     
    269269    }
    270270
    271     if ((!iOutlier) && (OPT->_obsModelType == OPT->DCMcodeBias ||
    272     OPT->_obsModelType == OPT->DCMphaseBias) && (!preProcessing)) {
     271    if ((!iOutlier) &&
     272        (OPT->_obsModelType == OPT->DCMcodeBias ||
     273         OPT->_obsModelType == OPT->DCMphaseBias) && (!preProcessing)) {
    273274      _datumTrafo->updateIndices(sys, iObs + 1);
    274275      _datumTrafo->prepareAA(AA.SubMatrix(1, iObs + 1, 1, _parlist.nPar()), 1);
     
    295296            }
    296297            ll[iObs] = obs->obsValue(tLC) - obs->cmpValue(tLC)
    297                 - DotProduct(_x0, AA.Row(iObs + 1));
     298                     - DotProduct(_x0, AA.Row(iObs + 1));
    298299            PP[iObs] = 1.0 / (obs->sigma(tLC) * obs->sigma(tLC));
    299300          }
     
    405406    const vector<t_pppSatObs*> &obsVector, const t_prn &refPrn,
    406407    bool preProcessing) {
    407   const double SLIP = 20.0;
     408  const double SLIP = 50.0;
    408409  char sys = refPrn.system();
    409410  string epoTimeStr = string(_epoTime);
     
    471472          }
    472473          double ll = obs->obsValue(tLC) - obs->cmpValue(tLC)
    473               - DotProduct(_x0, AA);
     474                    - DotProduct(_x0, AA);
    474475          double vv = DotProduct(AA, _xFlt) - ll;
    475476          if (fabs(vv) > SLIP) {
Note: See TracChangeset for help on using the changeset viewer.