Changeset 8215 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Dec 13, 2017, 9:43:20 AM (6 years ago)
Author:
stuerze
Message:

unhealthy satellites are reported within log file but are remainig in stream and file output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppEphPool.cpp

    r7278 r8215  
    2626/////////////////////////////////////////////////////////////////////////////
    2727void t_pppEphPool::putEphemeris(t_eph* eph) {
    28   if (eph && eph->checkState() != t_eph::bad) {
     28  if (eph && (eph->checkState() != t_eph::bad ||
     29              eph->checkState() != t_eph::unhealthy))  {
    2930    _satEphPool[eph->prn().toInt()].putEphemeris(_maxQueueSize, eph);
    3031  }
Note: See TracChangeset for help on using the changeset viewer.