Changeset 10948 in ntrip for trunk/BNC/src/bncantex.h


Ignore:
Timestamp:
Jun 25, 2026, 3:40:10 PM (5 weeks ago)
Author:
stuerze
Message:

minor changes to investigate a special GLO behavior

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncantex.h

    r10947 r10948  
    5050                           ColumnVector& dx);
    5151
     52  // Drains and returns the diagnostic log accumulated by the GLONASS
     53  // yaw-fixed model (mode transitions, with beta/mu/rate at the time).
     54  // Empty most of the time; only non-empty right after a transition.
     55  QString takeGlonassYawLog() {
     56    QString s = _glonassYawLog;
     57    _glonassYawLog.clear();
     58    return s;
     59  }
     60
    5261 private:
    5362  // Per-satellite GLONASS yaw state, used to freeze the yaw angle while
     
    6069      lastMjd = 0.0;
    6170      valid   = false;
     71      fixed   = false;
    6272    }
    6373    double yaw;
    6474    double lastMjd; // Mjd of the last epoch the nominal law was trusted
    6575    bool   valid;
     76    bool   fixed;   // true while the yaw-fixed override is currently active
    6677  };
     78
     79  QString _glonassYawLog;
    6780
    6881  double glonassYawAngle(const QString& prn, double Mjd, const ColumnVector& xSat,
Note: See TracChangeset for help on using the changeset viewer.