Changeset 9370 in ntrip for branches/BNC_2.12/src/ephemeris.h


Ignore:
Timestamp:
Mar 11, 2021, 2:50:05 PM (3 years ago)
Author:
stuerze
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/ephemeris.h

    r9321 r9370  
    9191    _receptStaID      = "";
    9292  }
    93   t_ephGPS(float rnxVersion, const QStringList& lines);
     93  t_ephGPS(double rnxVersion, const QStringList& lines);
    9494  virtual ~t_ephGPS() {}
    9595
     
    190190    _M_l5             = 0.0;
    191191    _receptStaID      = "";
     192    _flags_unknown    = true;
    192193  }
    193   t_ephGlo(float rnxVersion, const QStringList& lines);
     194  t_ephGlo(double rnxVersion, const QStringList& lines);
    194195  virtual ~t_ephGlo() {}
    195196
     
    241242  double _M_delta_tau;        // [sec]
    242243  double _M_P4;               // flag to show that ephemeris parameters are present [-]
    243   double _M_FT;               // indicator for predicted satellite user range accuracy [-]
     244  double _M_FT;               // Indicator for predicted satellite User Range Accuracy (URAI) [-]
    244245  double _M_NT;               // current date, calendar number of day within 4-year interval [days]
    245246  double _M_M;                // type of satellite transmitting navigation signal: 0 = GLONASS, 1 = GLONASS-M satellite [-]
     
    247248  double _M_tau_GPS;          // correction to GPS time relative to GLONASS time [days]
    248249  double _M_l5;               // health flag
     250  bool   _flags_unknown;      // status and health flags are unknown (rnx version < 3.05) or known (rnx version >= 3.05)
    249251};
    250252
     
    284286    _receptStaID     = "";
    285287  };
    286   t_ephGal(float rnxVersion, const QStringList& lines);
     288  t_ephGal(double rnxVersion, const QStringList& lines);
    287289  virtual ~t_ephGal() {}
    288290
     
    365367    _receptStaID    = "";
    366368  }
    367   t_ephSBAS(float rnxVersion, const QStringList& lines);
     369  t_ephSBAS(double rnxVersion, const QStringList& lines);
    368370  virtual ~t_ephSBAS() {}
    369371
     
    433435   _receptStaID     = "";
    434436 }
    435  t_ephBDS(float rnxVersion, const QStringList& lines);
     437 t_ephBDS(double rnxVersion, const QStringList& lines);
    436438  virtual ~t_ephBDS() {}
    437439
Note: See TracChangeset for help on using the changeset viewer.