Changeset 10330 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Feb 13, 2024, 11:51:53 AM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP/pppEphPool.cpp ΒΆ
r9674 r10330 121 121 122 122 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 123 t_eph* eph = _ephs[ii]; 123 const t_eph* eph = _ephs[ii]; 124 124 t_irc irc = eph->getCrd(tt, xc, vv, OPT->useOrbClkCorr()); 125 125 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)) { 129 127 continue; 130 }131 128 } 132 129 return irc;
Note:
See TracChangeset
for help on using the changeset viewer.