mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
20 lines
No EOL
310 B
C++
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();
|
|
} |