Changeset 9649 in ntrip


Ignore:
Timestamp:
Mar 11, 2022, 9:51:34 AM (2 years ago)
Author:
stuerze
Message:

minor changes regarding PPP

Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r9647 r9649  
    344344
    345345  retVal = sqrt(retVal);
     346
     347  // De-Weight GLONASS
     348  // -----------------
     349  if (_prn.system() == 'R') {
     350    retVal *= 5.0;
     351  }
    346352
    347353  // Elevation-Dependent Weighting
  • trunk/BNC/src/pppMain.cpp

    r9648 r9649  
    218218      opt->_obsModelType = t_pppOptions::DCMcodeBias;
    219219      opt->_refSatRequired = true;
    220       opt->_noiseCodeBias  = 0.1;
    221       opt->_noiseIon = 10.0;
     220      opt->_noiseCodeBias  = 10.0;
     221      opt->_noiseIon = 0.1;
    222222    }
    223223    else if (settings.value("PPP/modelObs").toString() == "DCM with Phase Biases") {
    224224      opt->_obsModelType = t_pppOptions::DCMphaseBias;
    225225      opt->_refSatRequired = true;
    226       opt->_noisePhaseBias = 0.1;
    227       opt->_noiseIon = 10.0;
     226      opt->_noisePhaseBias = 10.0;
     227      opt->_noiseIon = 0.1;
    228228    }
    229229#endif
Note: See TracChangeset for help on using the changeset viewer.