Changeset 9634 in ntrip for trunk/BNC


Ignore:
Timestamp:
Feb 24, 2022, 5:06:06 PM (2 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r9633 r9634  
    346346
    347347  // De-Weight GLONASS
    348   /* -----------------
    349   if (_prn.system() == 'R' && t_lc::includesCode(tLC)) {
    350     retVal *= 2.0;
    351   }
    352 */
     348  // -----------------
     349  if (_prn.system() == 'R') {
     350    retVal *= 5.0;
     351  }
    353352
    354353  // Elevation-Dependent Weighting
  • trunk/BNC/src/pppMain.cpp

    r9633 r9634  
    206206      opt->_obsModelType = t_pppOptions::PPPRTK;
    207207      opt->_pseudoObsIono  = false;
    208       opt->_noiseIon = 1.0;
     208      opt->_noiseIon = 0.1;
    209209    }
    210210    else if (settings.value("PPP/modelObs").toString() == "Uncombined PPP") {
    211211      opt->_obsModelType = t_pppOptions::UncombPPP;
    212       opt->_noiseIon = 1.0;
     212      opt->_noiseIon = 0.1;
    213213      if (opt->_pseudoObsIono) {
    214214        opt->_refSatRequired = true;
     
    218218      opt->_obsModelType = t_pppOptions::DCMcodeBias;
    219219      opt->_refSatRequired = true;
    220       opt->_noiseCodeBias  = 100.0;
    221       opt->_noiseIon = 1.0;
     220      opt->_noiseCodeBias  = 0.1;
     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 = 100.0;
    227       opt->_noiseIon = 1.0;
     226      opt->_noisePhaseBias = 0.1;
     227      opt->_noiseIon = 0.1;
    228228    }
    229229#endif
Note: See TracChangeset for help on using the changeset viewer.