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