satdump/src-core/tle.h

17 lines
235 B
C
Raw Normal View History

2021-06-03 12:23:30 +02:00
#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);
}