Changeset 6809 in ntrip for trunk/BNC/src/ephemeris.h


Ignore:
Timestamp:
Apr 30, 2015, 10:37:30 PM (9 years ago)
Author:
stuerze
Message:

I/NAV - F/NAV issue (hopefully:) solved in another way

File:
1 edited

Legend:

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

    r6798 r6809  
    3434  void    setCheckState(e_checkState checkState) {_checkState = checkState;}
    3535  t_prn   prn() const {return _prn;}
    36   int     flags() const {return _flags;}
    37   bool    hasOtherFlagsThan(const t_eph* eph) {return differentFlags(eph, this);}
    3836  t_irc   getCrd(const bncTime& tt, ColumnVector& xc, ColumnVector& vv, bool useCorr) const;
    3937  void    setOrbCorr(const t_orbCorr* orbCorr);
     
    4341  static QString rinexDateStr(const bncTime& tt, const QString& prnStr, double version);
    4442  static bool earlierTime(const t_eph* eph1, const t_eph* eph2) {return eph1->_TOC < eph2->_TOC;}
    45   static bool differentFlags(const t_eph* eph1, const t_eph* eph2) {return eph1->_flags != eph2->_flags;}
    4643
    4744 protected: 
     
    4946  t_prn        _prn;
    5047  bncTime      _TOC;
    51   int          _flags;
    5248  QDateTime    _receptDateTime;
    5349  e_checkState _checkState;
     
    155151 friend class t_ephEncoder;
    156152 public:
    157   t_ephGal() { }
     153  t_ephGal() : _flags(0) { };
    158154  t_ephGal(float rnxVersion, const QStringList& lines);
    159155  virtual ~t_ephGal() {}
     
    192188
    193189  double  _IDOT;             //  [rad/s]
    194   double _TOEweek;
     190  double  _TOEweek;
    195191  // spare
    196192
     
    202198  double  _BGD_1_5B;         //  group delay [s]
    203199
    204   double _TOT;               // [s]
     200  double  _TOT;              // [s]
     201
     202  int     _flags;            // GALEPHF_E5ADINVALID   E5aDVS set invalid
     203                             // GALEPHF_E5BDINVALID   E5bDVS set invalid
     204                             // GALEPHF_INAV          INAV data
     205                             // GALEPHF_FNAV          FNAV data
     206                             // GALEPHF_E1DINVALID    E1DVS set invalid
    205207};
    206208
Note: See TracChangeset for help on using the changeset viewer.