在线获取卫星二行根数TLE
目录
(一)获取两行根数地址
(二)JAVA api方式按照卫星code自动获取TLE
(三)python3 方式在线获取TLE
(一)获取两行根数地址
https://celestrak.org/NORAD/elements/gp.php?GROUP=active&FORMAT=tle
可按照需要查询卫星code,在上面链接中搜索所需要卫星的二行根数,国际在轨卫星大多都可以在该网址中查询到,数据会每天自动更新,如需要用户可自动使用定时任务每天定时从上面网址中更新TLE。
(二)JAVA api方式按照卫星code自动获取TLE
直接上代码
public String[] getTleData(String satId) throws Exception {
String urlStr = "https://celestrak.org/NORAD/elements/gp.php?CATNR=" + satId + "&FORMAT=tle";
URL url = new URL(urlStr);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
if (conn.getResponseCode() != 200) {
throw new RuntimeException("无法从CelesTrak获取数据,状态码:" + conn.getResponseCode());
}
Scanner scanner = new Scanner(conn.getInputStream());
scanner.nextLine(); // Skip the first line (satellite name)
String line1 = scanner.nextLine();
String line2 = scanner.nextLine();
scanner.close();
if (line1 == null || line2 == null) {
throw new RuntimeException("未能获取有效的TLE数据");
}
return new String[]{line1, line2};
}
(三)python3 方式在线获取TLE
直接上代码
import requests
def get_tle_data(sat_id):
url = f"https://celestrak.org/NORAD/elements/gp.php?CATNR={sat_id}&FORMAT=tle"
response = requests.get(url)
if response.status_code == 200:
tle_data = response.text.strip().split('\n')55
if len(tle_data) >= 3:
return tle_data[1], tle_data[2]
else:
raise ValueError("未能获取有效的TLE数据")
else:
raise ConnectionError(f"无法从CelesTrak获取数据,状态码:{response.status_code}")
上面三种方式都是日常在企业项目中获取TLE的方式。
作者:卑微打工人(~ ̄▽ ̄)~