satdump/src-core/tle.h
2021-11-19 14:25:08 +01:00

20 lines
No EOL
310 B
C++

#pragma once
#include <string>
namespace tle
{
struct TLE
{
int norad;
std::string name;
std::string line1;
std::string line2;
};
void loadTLEs();
TLE getTLEfromNORAD(int norad);
void updateTLEs();
void updateTLEsMT();
void stopTLECleanMT();
}