Changeset 10315 in ntrip for trunk/BNC/src/ephemeris.cpp


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

File:
1 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  }
Note: See TracChangeset for help on using the changeset viewer.