Changeset 8617 in ntrip for trunk/BNC/src/satObs.h


Ignore:
Timestamp:
Feb 28, 2019, 2:46:37 PM (5 years ago)
Author:
stuerze
Message:

a computed lock time is added for RTCM3 phase observations as an optional feed engine output

File:
1 edited

Legend:

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

    r8483 r8617  
    2323    _snr             = 0.0;
    2424    _snrValid        = false;
     25    _lockTime        = 0.0;
     26    _lockTimeValid   = false;   
    2527    _slip            = false;
    2628    _slipCounter     = 0;
     
    3638  double            _snr;
    3739  bool              _snrValid;
     40  double            _lockTime;
     41  bool              _lockTimeValid;   
    3842  bool              _slip;
    3943  int               _slipCounter;
     
    164168    _dispBiasConstistInd = 0;
    165169    _MWConsistInd = 0;
    166     _yawDeg     = 0.0;
    167     _yawDegRate = 0.0;
     170    _yaw        = 0.0;
     171    _yawRate    = 0.0;
    168172  }
    169173  static void writeEpoch(std::ostream* out, const QList<t_satPhaseBias>& biasList);
     
    175179  unsigned int                _dispBiasConstistInd; // not satellite specific
    176180  unsigned int                _MWConsistInd;        // not satellite specific
    177   double                      _yawDeg;
    178   double                      _yawDegRate;
     181  double                      _yaw;
     182  double                      _yawRate;
    179183  std::vector<t_frqPhaseBias> _bias;
    180184};
Note: See TracChangeset for help on using the changeset viewer.