Changeset 9562 in ntrip for trunk/BNC/src/PPP/pppSatObs.cpp


Ignore:
Timestamp:
Dec 3, 2021, 3:25:41 PM (2 years ago)
Author:
stuerze
Message:

update regarding PPP

File:
1 edited

Legend:

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

    r9561 r9562  
    6868  if (OPT->_obsModelType == OPT->DCMcodeBias ||
    6969      OPT->_obsModelType == OPT->DCMphaseBias) {
    70     // at the moment only one code or phase bias per system (G,E,C)/modulation considered,
    71     preferredAttrib = "G:12&W R:12&PC E:1&CX E:5&QX C:26&I";
     70    // at the moment only one code or phase bias per system (G,R,E,C)/modulation considered,
     71    preferredAttrib = "G:12&W R:12&P E:1&CX E:5&QX C:26&I";
    7272  }
    7373
     
    313313  // De-Weight GLONASS code measurements
    314314  // -----------------------------------
    315   if (_prn.system() == 'R'  && t_lc::includesCode(tLC) ) {
     315  if (_prn.system() == 'R'  &&
     316      (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC) )) {
    316317    retVal *= 5.0;
     318  }
     319  if (_prn.system() == 'C'  &&
     320      (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC) )) {
     321    retVal *= 2.0;
    317322  }
    318323
Note: See TracChangeset for help on using the changeset viewer.