Changeset 3659 in ntrip for trunk/BNC/RTCM3
- Timestamp:
- Feb 3, 2012, 5:34:05 PM (13 years ago)
- Location:
- trunk/BNC/RTCM3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/RTCM3/ephemeris.cpp ¶
r3538 r3659 99 99 100 100 _TGD = ee->TGD; 101 102 _ok = true; 101 103 } 102 104 … … 492 494 _xv(5) = _y_velocity * 1.e3; 493 495 _xv(6) = _z_velocity * 1.e3; 496 497 _ok = true; 494 498 } 495 499 … … 613 617 _OMEGADOT = ee->OMEGADOT; 614 618 _IDOT = ee->IDOT; 619 620 _ok = true; 615 621 } 616 622 … … 783 789 return size; 784 790 } 791 792 // Constructor 793 ////////////////////////////////////////////////////////////////////////////// 794 t_ephGPS::t_ephGPS(float rnxVersion, const QStringList& lines) { 795 796 _ok = false; 797 } 798 799 // Constructor 800 ////////////////////////////////////////////////////////////////////////////// 801 t_ephGlo::t_ephGlo(float rnxVersion, const QStringList& lines) { 802 803 _ok = false; 804 } 805 806 // Constructor 807 ////////////////////////////////////////////////////////////////////////////// 808 t_ephGal::t_ephGal(float rnxVersion, const QStringList& lines) { 809 810 _ok = false; 811 } -
TabularUnified trunk/BNC/RTCM3/ephemeris.h ¶
r3255 r3659 12 12 class t_eph { 13 13 public: 14 t_eph() {_ok = false;} 14 15 virtual ~t_eph() {}; 15 16 17 bool ok() const {return _ok;} 16 18 bool isNewerThan(const t_eph* eph) const; 17 19 QString prn() const {return _prn;} … … 49 51 double _GPSweeks; 50 52 QDateTime _receptDateTime; 53 bool _ok; 51 54 }; 52 55 … … 55 58 public: 56 59 t_ephGPS() { } 60 t_ephGPS(float rnxVersion, const QStringList& lines); 57 61 virtual ~t_ephGPS() {} 58 62 double TOC() const {return _TOC;} … … 105 109 public: 106 110 t_ephGlo() { _xv.ReSize(6); } 111 t_ephGlo(float rnxVersion, const QStringList& lines); 107 112 108 113 virtual ~t_ephGlo() {} … … 146 151 public: 147 152 t_ephGal() { } 153 t_ephGal(float rnxVersion, const QStringList& lines); 148 154 virtual ~t_ephGal() {} 149 155 double TOC() const {return _TOC;}
Note:
See TracChangeset
for help on using the changeset viewer.