Changeset 889 in ntrip
- Timestamp:
- May 8, 2008, 5:02:42 PM (17 years ago)
- Location:
- trunk/BNS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bnseph.cpp
r888 r889 263 263 } 264 264 265 // 265 // Read Glonass Ephemeris 266 266 //////////////////////////////////////////////////////////////////////////// 267 267 void t_ephGlo::read(const QStringList& lines) { … … 343 343 } 344 344 345 // 345 // Compute Glonass Satellite Position 346 346 //////////////////////////////////////////////////////////////////////////// 347 347 void t_ephGlo::position(int GPSweek, double GPSweeks, ColumnVector& xc, -
trunk/BNS/bnseph.h
r887 r889 35 35 virtual void position(int GPSweek, double GPSweeks, ColumnVector& xc, 36 36 ColumnVector& vv) const; 37 virtual int IOD() const ;37 virtual int IOD() const {return int(_GPSweeks);} 38 38 private: 39 39 static ColumnVector glo_deriv(double /* tt */, const ColumnVector& xv); 40 ColumnVector _xv; 40 double _tt; // time in seconds of GPSweek 41 ColumnVector _xv; // status vector (position, velocity) at time _tt 41 42 42 double _E; / *[days]*/43 double _tau; / *[s]*/44 double _gamma; / **/45 double _x_pos; / *[km]*/46 double _x_velocity; / *[km/s]*/47 double _x_acceleration; / *[km/s^2]*/48 double _y_pos; / *[km]*/49 double _y_velocity; / *[km/s]*/50 double _y_acceleration; / *[km/s^2]*/51 double _z_pos; / *[km]*/52 double _z_velocity; / *[km/s]*/53 double _z_acceleration; / *[km/s^2]*/54 double _health; / *0 = O.K.*/55 double _frequency_number; / *ICD-GLONASS data position*/43 double _E; // [days] 44 double _tau; // [s] 45 double _gamma; // 46 double _x_pos; // [km] 47 double _x_velocity; // [km/s] 48 double _x_acceleration; // [km/s^2] 49 double _y_pos; // [km] 50 double _y_velocity; // [km/s] 51 double _y_acceleration; // [km/s^2] 52 double _z_pos; // [km] 53 double _z_velocity; // [km/s] 54 double _z_acceleration; // [km/s^2] 55 double _health; // 0 = O.K. 56 double _frequency_number; // ICD-GLONASS data position 56 57 }; 57 58
Note:
See TracChangeset
for help on using the changeset viewer.