Changeset 8420 in ntrip for branches/BNC_2.12/src
- Timestamp:
- Jul 13, 2018, 2:30:16 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/ephemeris.cpp
r8370 r8420 57 57 t_irc t_eph::getCrd(const bncTime& tt, ColumnVector& xc, ColumnVector& vv, bool useCorr) const { 58 58 59 if (_checkState == bad) { 59 if (_checkState == bad || 60 _checkState == unhealthy) { 60 61 return failure; 61 62 } … … 311 312 t_irc t_ephGPS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 312 313 313 if (_checkState == bad) { 314 if (_checkState == bad || 315 _checkState == unhealthy) { 314 316 return failure; 315 317 } … … 605 607 t_irc t_ephGlo::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 606 608 607 if (_checkState == bad) { 609 if (_checkState == bad || 610 _checkState == unhealthy) { 608 611 return failure; 609 612 } … … 902 905 t_irc t_ephGal::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 903 906 904 if (_checkState == bad) { 907 if (_checkState == bad || 908 _checkState == unhealthy) { 905 909 return failure; 906 910 } … … 1282 1286 t_irc t_ephSBAS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 1283 1287 1284 if (_checkState == bad) { 1288 if (_checkState == bad || 1289 _checkState == unhealthy) { 1285 1290 return failure; 1286 1291 } … … 1521 1526 t_irc t_ephBDS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 1522 1527 1523 if (_checkState == bad) { 1528 if (_checkState == bad || 1529 _checkState == unhealthy) { 1524 1530 return failure; 1525 1531 }
Note:
See TracChangeset
for help on using the changeset viewer.