Changeset 10330 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Feb 13, 2024, 11:51:53 AM (3 months ago)
Author:
stuerze
Message:

another test is added in PPP and combination mode to check if stored ephemerides were outdated and/or not updated in between

File:
1 edited

Legend:

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

    r9674 r10330  
    121121
    122122  for (unsigned ii = 0; ii < _ephs.size(); ii++) {
    123     t_eph* eph = _ephs[ii];
     123    const t_eph* eph = _ephs[ii];
    124124    t_irc irc = eph->getCrd(tt, xc, vv, OPT->useOrbClkCorr());
    125125    if (irc == success) {
    126       if (eph->prn().system() == 'R') {
    127         double age = tt - eph->TOC();
    128         if (fabs(age) > 3600.0) {
     126        if (outDatedBcep(eph, tt)) {
    129127          continue;
    130         }
    131128      }
    132129      return irc;
Note: See TracChangeset for help on using the changeset viewer.