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


Ignore:
Timestamp:
Mar 1, 2024, 4:12:31 PM (7 months ago)
Author:
stuerze
Message:

changes regarding PPP

File:
1 edited

Legend:

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

    r10336 r10373  
    660660  for (unsigned ii = 0; ii < OPT->LCs(sys).size(); ii++) {
    661661    t_lc::type tLC = OPT->LCs(sys)[ii];
     662    double offGps = 0.0;
     663    if (_prn.system() == 'G' && tLC != t_lc::MW) {
     664      offGps = PPP_CLIENT->offGps();
     665    }
    662666    double offGlo = 0;
    663667    if (sys == 'R' && tLC != t_lc::MW) {
     
    675679        << setw(12) << setprecision(3) << obsValue(tLC) << " "
    676680        << setw(12) << setprecision(3) << cmpValue(tLC) << " "
    677         << setw(12) << setprecision(3) << obsValue(tLC) - offGlo - offGal - offBds  - cmpValue(tLC) << endl;
     681        << setw(12) << setprecision(3) << obsValue(tLC) - offGps - offGlo - offGal - offBds  - cmpValue(tLC) << endl;
    678682  }
    679683}
Note: See TracChangeset for help on using the changeset viewer.