Changeset 10315 in ntrip


Ignore:
Timestamp:
Jan 19, 2024, 9:52:15 AM (3 months ago)
Author:
stuerze
Message:

health status of the Galileo satellites is now defined by the combination of HS, DVS and SISA

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/ephemeris.cpp

    r9939 r10315  
    14851485////////////////////////////////////////////////////////////////////////////
    14861486unsigned int t_ephGal::isUnhealthy() const {
    1487   if (_E5aHS && _E5bHS && _E1_bHS) {
     1487  if (_E5aHS || _E5bHS || _E1_bHS) {
     1488    return 1;
     1489  }
     1490  if (_SISA == 255.0) {
     1491    return 1;
     1492  }
     1493  if (_e5aDataInValid || _e5bDataInValid || _e1DataInValid) {
    14881494    return 1;
    14891495  }
  • trunk/BNC/src/ephemeris.h

    r9789 r10315  
    384384  /** Data comes from F/NAV when <code>true</code> */
    385385  bool    _fnav;
    386   /** EE Data is not valid */
     386  /** E1 Data is not valid */
    387387  bool    _e1DataInValid;
    388388  /** E5A Data is not valid */
Note: See TracChangeset for help on using the changeset viewer.