Changeset 9667 in ntrip


Ignore:
Timestamp:
Mar 23, 2022, 9:44: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

    r9662 r9667  
    346346
    347347  // De-Weight GLONASS
    348   /* -----------------
    349   if (_prn.system() == 'R' &&
    350       (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) {
     348  // -----------------
     349  if (_prn.system() == 'R') {
    351350    retVal *= 5.0;
    352   }*/
    353 
     351  }
     352  if (_prn.system() == 'C') {
     353    retVal *= 2.0;
     354  }
    354355
    355356  // Elevation-Dependent Weighting
  • trunk/BNC/src/pppMain.cpp

    r9666 r9667  
    219219      opt->_refSatRequired = true;
    220220      opt->_noiseCodeBias  = 10.0;
    221       opt->_noiseIon = 1.0;
     221      opt->_noiseIon = 0.1;
    222222    }
    223223    else if (settings.value("PPP/modelObs").toString() == "DCM with Phase Biases") {
     
    225225      opt->_refSatRequired = true;
    226226      opt->_noisePhaseBias = 10.0;
    227       opt->_noiseIon = 1.0;
     227      opt->_noiseIon = 0.1;
    228228    }
    229229#endif
Note: See TracChangeset for help on using the changeset viewer.