Changeset 8618 in ntrip
- Timestamp:
- Feb 28, 2019, 2:47:10 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/ephemeris.cpp
r8584 r8618 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 … … 913 904 t_irc t_ephGal::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 914 905 915 if (_checkState == bad ||916 _checkState == unhealthy) {917 return failure;918 }919 920 906 static const double omegaEarth = 7292115.1467e-11; 921 907 static const double gmWGS = 398.6004418e12; … … 1298 1284 t_irc t_ephSBAS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 1299 1285 1300 if (_checkState == bad ||1301 _checkState == unhealthy) {1302 return failure;1303 }1304 1305 1286 bncTime tt(GPSweek, GPSweeks); 1306 1287 double dt = tt - _TOC; … … 1513 1494 ////////////////////////////////////////////////////////////////////////////// 1514 1495 t_irc t_ephBDS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const { 1515 1516 if (_checkState == bad ||1517 _checkState == unhealthy) {1518 return failure;1519 }1520 1521 1496 1522 1497 static const double gmBDS = 398.6004418e12;
Note:
See TracChangeset
for help on using the changeset viewer.