Changeset 7960 in ntrip for branches


Ignore:
Timestamp:
Jun 14, 2016, 3:05:16 PM (8 years ago)
Author:
stuerze
Message:

minor changes regarding outlier detection

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/PPP_SSR_I/pppFilter.cpp

    r7958 r7960  
    5656
    5757const double   MAXRES_CODE           = 2.98 * 3.0;
    58 const double   MAXRES_PHASE_GPS      = 2.98 * 0.03;
     58const double   MAXRES_PHASE_GPS      = 0.04;
    5959const double   MAXRES_PHASE_GLONASS  = 2.98 * 0.03;
    6060const double   GLONASS_WEIGHT_FACTOR = 5.0;
     
    745745////////////////////////////////////////////////////////////////////////////
    746746QString t_pppFilter::outlierDetection(int iPhase, const ColumnVector& vv,
    747                                    QMap<QString, t_satData*>& satData) {
     747                                      QMap<QString, t_satData*>& satData) {
    748748
    749749  Tracer tracer("t_pppFilter::outlierDetection");
     
    760760      return prnGlo;
    761761    }
    762     else if (maxResGPS > 2.98 * OPT->_maxResL1) {
     762    else if (maxResGPS > MAXRES_PHASE_GPS) {
    763763      LOG << "Outlier Phase " << prnGPS.mid(0,3).toAscii().data() << ' ' << maxResGPS << endl;
    764764      return prnGPS;
Note: See TracChangeset for help on using the changeset viewer.