Changeset 3659 in ntrip for trunk/BNC/RTCM3


Ignore:
Timestamp:
Feb 3, 2012, 5:34:05 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/RTCM3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/ephemeris.cpp

    r3538 r3659  
    9999
    100100  _TGD      = ee->TGD;
     101
     102  _ok       = true;
    101103}
    102104
     
    492494  _xv(5) = _y_velocity * 1.e3;
    493495  _xv(6) = _z_velocity * 1.e3;
     496
     497  _ok = true;
    494498}
    495499
     
    613617  _OMEGADOT = ee->OMEGADOT;
    614618  _IDOT     = ee->IDOT;
     619
     620  _ok = true;
    615621}
    616622
     
    783789  return size;
    784790}
     791
     792// Constructor
     793//////////////////////////////////////////////////////////////////////////////
     794t_ephGPS::t_ephGPS(float rnxVersion, const QStringList& lines) {
     795
     796  _ok = false;
     797}
     798
     799// Constructor
     800//////////////////////////////////////////////////////////////////////////////
     801t_ephGlo::t_ephGlo(float rnxVersion, const QStringList& lines) {
     802
     803  _ok = false;
     804}
     805
     806// Constructor
     807//////////////////////////////////////////////////////////////////////////////
     808t_ephGal::t_ephGal(float rnxVersion, const QStringList& lines) {
     809
     810  _ok = false;
     811}
  • trunk/BNC/RTCM3/ephemeris.h

    r3255 r3659  
    1212class t_eph {
    1313 public:
     14  t_eph() {_ok = false;}
    1415  virtual ~t_eph() {};
    1516
     17  bool     ok() const {return _ok;}
    1618  bool     isNewerThan(const t_eph* eph) const;
    1719  QString  prn() const {return _prn;}
     
    4951  double    _GPSweeks;
    5052  QDateTime _receptDateTime;
     53  bool      _ok;
    5154};
    5255
     
    5558 public:
    5659  t_ephGPS() { }
     60  t_ephGPS(float rnxVersion, const QStringList& lines);
    5761  virtual ~t_ephGPS() {}
    5862  double TOC() const {return _TOC;}
     
    105109 public:
    106110  t_ephGlo() { _xv.ReSize(6); }
     111  t_ephGlo(float rnxVersion, const QStringList& lines);
    107112
    108113  virtual ~t_ephGlo() {}
     
    146151 public:
    147152  t_ephGal() { }
     153  t_ephGal(float rnxVersion, const QStringList& lines);
    148154  virtual ~t_ephGal() {}
    149155  double TOC() const {return _TOC;}
Note: See TracChangeset for help on using the changeset viewer.