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


Ignore:
Timestamp:
Jul 27, 2021, 10:50:31 AM (3 years ago)
Author:
stuerze
Message:

update regarding PPP

File:
1 edited

Legend:

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

    r9485 r9486  
    324324  // -------------
    325325  if (_prn.system() == 'C' && (t_lc::includesCode(tLC) ||  t_lc::includesPhase(tLC))) {
    326     retVal *= 2.0;
     326    retVal *= 5.0;
    327327  }
    328328
     
    366366
    367367  retVal = sqrt(retVal);
     368
     369  // De-Weight GLONASS
     370  // -----------------
     371  if (_prn.system() == 'R' && (t_lc::includesCode(tLC) ||  t_lc::includesPhase(tLC))) {
     372    retVal *= 5.0;
     373  }
     374
     375  // De-Weight BDS
     376  // -------------
     377  if (_prn.system() == 'C' && (t_lc::includesCode(tLC) ||  t_lc::includesPhase(tLC))) {
     378    retVal *= 5.0;
     379  }
     380
    368381
    369382  return retVal;
Note: See TracChangeset for help on using the changeset viewer.