mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
21 lines
No EOL
438 B
C++
21 lines
No EOL
438 B
C++
#pragma once
|
|
|
|
#include "tle.h"
|
|
#include "libs/predict/predict.h"
|
|
#include "common/geodetic/geodetic_coordinates.h"
|
|
|
|
namespace satdump
|
|
{
|
|
class SatelliteTracker
|
|
{
|
|
private:
|
|
predict_orbital_elements_t *satellite_object;
|
|
predict_position satellite_orbit;
|
|
|
|
public:
|
|
SatelliteTracker(TLE tle);
|
|
~SatelliteTracker();
|
|
|
|
geodetic::geodetic_coords_t get_sat_position_at(double utc_time);
|
|
};
|
|
} |