Changeset 8615 in ntrip for branches/BNC_2.12
- Timestamp:
- Feb 28, 2019, 11:30:15 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/ephemeris.cpp
r8583 r8615 58 58 59 59 if (_checkState == bad || 60 _checkState == unhealthy) { 60 _checkState == unhealthy || 61 _checkState == outdated) { 61 62 return failure; 62 63 } … … 311 312 //////////////////////////////////////////////////////////////////////////// 312 313 t_irc t_ephGPS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 313 314 if (_checkState == bad ||315 _checkState == unhealthy) {316 return failure;317 }318 314 319 315 static const double omegaEarth = 7292115.1467e-11; … … 610 606 t_irc t_ephGlo::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 611 607 612 if (_checkState == bad ||613 _checkState == unhealthy) {614 return failure;615 }616 617 608 static const double nominalStep = 10.0; 618 609 … … 912 903 t_irc t_ephGal::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 913 904 914 if (_checkState == bad ||915 _checkState == unhealthy) {916 return failure;917 }918 919 905 static const double omegaEarth = 7292115.1467e-11; 920 906 static const double gmWGS = 398.6004418e12; … … 1295 1281 //////////////////////////////////////////////////////////////////////////// 1296 1282 t_irc t_ephSBAS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 1297 1298 if (_checkState == bad ||1299 _checkState == unhealthy) {1300 return failure;1301 }1302 1283 1303 1284 bncTime tt(GPSweek, GPSweeks); … … 1539 1520 t_irc t_ephBDS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 1540 1521 1541 if (_checkState == bad ||1542 _checkState == unhealthy) {1543 return failure;1544 }1545 1546 1522 static const double gmBDS = 398.6004418e12; 1547 1523 static const double omegaBDS = 7292115.0000e-11;
Note:
See TracChangeset
for help on using the changeset viewer.