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


Ignore:
Timestamp:
Dec 4, 2014, 3:05:52 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6213 r6373  
    1919class t_eph {
    2020 public:
    21   enum e_type {unknown, GPS, GLONASS, Galileo};
     21  enum e_type {unknown, GPS, QZSS, GLONASS, Galileo};
    2222
    2323  t_eph();
     
    5858  virtual ~t_ephGPS() {}
    5959
    60   virtual e_type type() const {return t_eph::GPS;}
     60  virtual e_type type() const {return (_prn.system() == 'J' ? t_eph::QZSS : t_eph::GPS); }
    6161  virtual QString toString(double version) const;
    6262  virtual int  IOD() const { return static_cast<int>(_IODC); }
Note: See TracChangeset for help on using the changeset viewer.