Changeset 10587 in ntrip for trunk/BNC/src/rinex/rnxnavfile.h


Ignore:
Timestamp:
Dec 10, 2024, 3:57:21 PM (4 days ago)
Author:
stuerze
Message:

RINEX version 4.02 updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxnavfile.h

    r10127 r10587  
    3838#define defaultRnxNavVersion2 2.11
    3939#define defaultRnxNavVersion3 3.05
    40 #define defaultRnxNavVersion4 4.01
     40#define defaultRnxNavVersion4 4.02
    4141
    4242class t_rnxNavFile {
     
    5252    double _version;
    5353    bool   _glonass;
    54     t_eph::e_type _satSys;
    55     QStringList _comments;
    56     QStringList _runByDate;
     54    t_eph::e_system _satSys;
     55    QStringList     _comments;
     56    QStringList     _runByDate;
    5757  };
    5858
     
    6767  QStringList comments() const {return _header._comments;}
    6868  QStringList runByDate() const {return _header._runByDate;}
    69   t_eph::e_type satSystem() const {return _header._satSys;}
     69  t_eph::e_system satSystem() const {return _header._satSys;}
    7070  void   setGlonass(bool glo) {_header._glonass = glo;}
    71   void   setGnssTypeV3(t_eph::e_type sys) {_header._satSys = sys;}
     71  void   setGnssTypeV3(t_eph::e_system system) {_header._satSys = system;}
    7272  void   writeHeader(const QMap<QString, QString>* txtMap = 0, int numMergedFiles = 0, int leapSecs = 0);
    7373  void   writeEph(const t_eph* eph);
Note: See TracChangeset for help on using the changeset viewer.