Changeset 8419 in ntrip
- Timestamp:
- Jul 13, 2018, 2:29:28 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/ephemeris.cpp
r8410 r8419 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 } … … 903 906 t_irc t_ephGal::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 904 907 905 if (_checkState == bad) { 908 if (_checkState == bad || 909 _checkState == unhealthy) { 906 910 return failure; 907 911 } … … 1284 1288 t_irc t_ephSBAS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 1285 1289 1286 if (_checkState == bad) { 1290 if (_checkState == bad || 1291 _checkState == unhealthy) { 1287 1292 return failure; 1288 1293 } … … 1496 1501 t_irc t_ephBDS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 1497 1502 1498 if (_checkState == bad) { 1503 if (_checkState == bad || 1504 _checkState == unhealthy) { 1499 1505 return failure; 1500 1506 } … … 1666 1672 ////////////////////////////////////////////////////////////////////////////// 1667 1673 QString t_ephBDS::toString(double version) const { 1668 IOD(); 1674 1669 1675 QString rnxStr = rinexDateStr(_TOC-14.0, _prn, version); 1670 1676
Note:
See TracChangeset
for help on using the changeset viewer.