sgp4/SatelliteOrbit.h

24 lines
365 B
C
Raw Normal View History

2011-04-07 14:15:47 +00:00
#ifndef SATELLITEORBIT_H_
#define SATELLITEORBIT_H_
#include "Tle.h"
2011-04-11 16:20:40 +00:00
#include "SGP4.h"
2011-04-07 14:15:47 +00:00
class SatelliteOrbit {
public:
SatelliteOrbit(void);
virtual ~SatelliteOrbit(void);
void SetTle(const Tle& tle);
bool IsGeostationary();
unsigned int GetOrbitNumber(const Julian& jul) const;
private:
2011-04-11 16:20:40 +00:00
SGP4 sgdp4_;
2011-04-07 14:15:47 +00:00
};
#endif