STARLINK-11370
1 61584U 24187L 25119.07376559 -.00002568 00000-0 -16336-4 0 9992
2 61584 53.1584 47.3908 0000903 87.5135 272.5986 15.69727939 31331
STARLINK-11370
1 61584U 24187L 25118.81909539 -.00003603 00000-0 -24884-4 0 9991
2 61584 53.1587 48.6451 0001022 77.4295 282.6838 15.69720659 31294
STARLINK-11370
1 61584U 24187L 25117.10001937 .00001644 00000-0 18429-4 0 9996
2 61584 53.1588 57.1182 0001104 91.9497 268.1647 15.69708995 31024
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 61584,
'channel': 'INTERNATIONAL',
'format': 'TLE'
}
response = requests.get('https://spacemapper.cn/cgi/orbital/aoe/list',
headers=headers, params=params)
print(response.text)
curl -H "Authorization: Bearer YOUR_API_TOKEN" "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=TLE"
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) {
try {
String url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=TLE";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Authorization", "Bearer YOUR_API_TOKEN");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
<php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=TLE");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: Bearer YOUR_API_TOKEN"));
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
const axios = require('axios');
axios.get('https://spacemapper.cn/cgi/orbital/aoe/list', {
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN'
},
params: {
catId: 61584,
channel: 'INTERNATIONAL',
format:TLE,
}
}).then(response => {
console.log(response.data);
}).catch(error => {
console.error(error);
});
using System;
using System.Net.Http;
using System.Threading.Tasks;
class Program{
static async Task Main(string[] args){
using (HttpClient client = new HttpClient()){
client.DefaultRequestHeaders.Add("Authorization", "Bearer YOUR_API_TOKEN");
string url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=TLE";
HttpResponseMessage response = await client.GetAsync(url);
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
}
}
#include <iostream>
#include <string>
#include <curl/curl.h>
size_t WriteCallback(void* contents, size_t size, size_t nmemb, void* userp) {
((std::string*)userp)->append((char*)contents, size * nmemb);
return size * nmemb;
}
int main() {
CURL* curl;
CURLcode res;
std::string readBuffer;
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if (curl) {
// 构造URL
std::string url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=TLE";
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
// 设置HTTP头
struct curl_slist *headers = nullptr;
headers = curl_slist_append(headers, "Authorization: Bearer YOUR_API_TOKEN");
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
// 设置写回调和数据
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
// 执行请求
res = curl_easy_perform(curl);
// 清理HTTP头链表
curl_slist_free_all(headers);
// 错误处理
if (res != CURLE_OK) {
std::cerr << "curl_easy_perform() failed: " << curl_easy_strerror(res) << std::endl;
} else {
std::cout << readBuffer << std::endl;
}
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return 0;
}
加载中...
加载中...
加载中...
{
"OBJECT_NAME": "STARLINK-11370",
"OBJECT_ID": "2024-187L",
"EPOCH": "2025-04-29T01:46:13+0000",
"MEAN_MOTION": 15.697279,
"ECCENTRICITY": 0.0000903,
"INCLINATION": 53.1584,
"RA_OF_ASC": 47.3908,
"ARG_OF_PER": 87.5135,
"MEAN_ANOMALY": 272.5986,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 61584,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 3133,
"BSTAR": -0.0000163,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6737.813,
"APOGEE": 360.287,
"PERIGEE": 360.287,
"PERIOD": 91.7356,
"LINE1": "1 61584U 24187L 25119.07376559 -.00002568 00000-0 -16336-4 0 9992",
"LINE2": "2 61584 53.1584 47.3908 0000903 87.5135 272.5986 15.69727939 31331"
}
{
"OBJECT_NAME": "STARLINK-11370",
"OBJECT_ID": "2024-187L",
"EPOCH": "2025-04-28T19:39:30+0000",
"MEAN_MOTION": 15.697206,
"ECCENTRICITY": 0.0001022,
"INCLINATION": 53.1587,
"RA_OF_ASC": 48.6451,
"ARG_OF_PER": 77.4295,
"MEAN_ANOMALY": 282.6838,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 61584,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 3129,
"BSTAR": -0.0000249,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6737.834,
"APOGEE": 360.388,
"PERIGEE": 360.388,
"PERIOD": 91.7361,
"LINE1": "1 61584U 24187L 25118.81909539 -.00003603 00000-0 -24884-4 0 9991",
"LINE2": "2 61584 53.1587 48.6451 0001022 77.4295 282.6838 15.69720659 31294"
}
{
"OBJECT_NAME": "STARLINK-11370",
"OBJECT_ID": "2024-187L",
"EPOCH": "2025-04-27T02:24:02+0000",
"MEAN_MOTION": 15.697089,
"ECCENTRICITY": 0.0001104,
"INCLINATION": 53.1588,
"RA_OF_ASC": 57.1182,
"ARG_OF_PER": 91.9497,
"MEAN_ANOMALY": 268.1647,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 61584,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 3102,
"BSTAR": 0.0000184,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6737.867,
"APOGEE": 360.476,
"PERIGEE": 360.476,
"PERIOD": 91.7368,
"LINE1": "1 61584U 24187L 25117.10001937 .00001644 00000-0 18429-4 0 9996",
"LINE2": "2 61584 53.1588 57.1182 0001104 91.9497 268.1647 15.69708995 31024"
}
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 61584,
'channel': 'INTERNATIONAL',
'format': 'JSON'
}
response = requests.get('https://spacemapper.cn/cgi/orbital/aoe/list',
headers=headers, params=params)
print(response.text)
curl -H "Authorization: Bearer YOUR_API_TOKEN" "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON"
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) {
try {
String url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Authorization", "Bearer YOUR_API_TOKEN");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
<php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: Bearer YOUR_API_TOKEN"));
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
const axios = require('axios');
axios.get('https://spacemapper.cn/cgi/orbital/aoe/list', {
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN'
},
params: {
catId: 61584,
channel: 'INTERNATIONAL',
format:JSON,
}
}).then(response => {
console.log(response.data);
}).catch(error => {
console.error(error);
});
using System;
using System.Net.Http;
using System.Threading.Tasks;
class Program{
static async Task Main(string[] args){
using (HttpClient client = new HttpClient()){
client.DefaultRequestHeaders.Add("Authorization", "Bearer YOUR_API_TOKEN");
string url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON";
HttpResponseMessage response = await client.GetAsync(url);
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
}
}
#include <iostream>
#include <string>
#include <curl/curl.h>
size_t WriteCallback(void* contents, size_t size, size_t nmemb, void* userp) {
((std::string*)userp)->append((char*)contents, size * nmemb);
return size * nmemb;
}
int main() {
CURL* curl;
CURLcode res;
std::string readBuffer;
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if (curl) {
// 构造URL
std::string url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON";
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
// 设置HTTP头
struct curl_slist *headers = nullptr;
headers = curl_slist_append(headers, "Authorization: Bearer YOUR_API_TOKEN");
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
// 设置写回调和数据
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
// 执行请求
res = curl_easy_perform(curl);
// 清理HTTP头链表
curl_slist_free_all(headers);
// 错误处理
if (res != CURLE_OK) {
std::cerr << "curl_easy_perform() failed: " << curl_easy_strerror(res) << std::endl;
} else {
std::cout << readBuffer << std::endl;
}
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return 0;
}
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
6737.813Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
272.5986°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
87.5135°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
47.3908°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.1584°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0000903
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-04-29T01:46:13+0000
| 轨道数据的历元时间。 |
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
6737.834Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
282.6838°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
77.4295°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
48.6451°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.1587°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0001022
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-04-28T19:39:30+0000
| 轨道数据的历元时间。 |
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
6737.867Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
268.1647°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
91.9497°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
57.1182°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.1588°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0001104
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-04-27T02:24:02+0000
| 轨道数据的历元时间。 |
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 61584,
'channel': 'INTERNATIONAL',
'format': 'JSON'
}
response = requests.get('https://spacemapper.cn/cgi/orbital/aoe/list',
headers=headers, params=params)
print(response.text)
curl -H "Authorization: Bearer YOUR_API_TOKEN" "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON"
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) {
try {
String url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Authorization", "Bearer YOUR_API_TOKEN");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
<php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: Bearer YOUR_API_TOKEN"));
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
const axios = require('axios');
axios.get('https://spacemapper.cn/cgi/orbital/aoe/list', {
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN'
},
params: {
catId: 61584,
channel: 'INTERNATIONAL',
format:JSON,
}
}).then(response => {
console.log(response.data);
}).catch(error => {
console.error(error);
});
using System;
using System.Net.Http;
using System.Threading.Tasks;
class Program{
static async Task Main(string[] args){
using (HttpClient client = new HttpClient()){
client.DefaultRequestHeaders.Add("Authorization", "Bearer YOUR_API_TOKEN");
string url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON";
HttpResponseMessage response = await client.GetAsync(url);
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
}
}
#include <iostream>
#include <string>
#include <curl/curl.h>
size_t WriteCallback(void* contents, size_t size, size_t nmemb, void* userp) {
((std::string*)userp)->append((char*)contents, size * nmemb);
return size * nmemb;
}
int main() {
CURL* curl;
CURLcode res;
std::string readBuffer;
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if (curl) {
// 构造URL
std::string url = "https://spacemapper.cn/cgi/orbital/aoe/list?catId=61584&channel=INTERNATIONAL&format=JSON";
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
// 设置HTTP头
struct curl_slist *headers = nullptr;
headers = curl_slist_append(headers, "Authorization: Bearer YOUR_API_TOKEN");
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
// 设置写回调和数据
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
// 执行请求
res = curl_easy_perform(curl);
// 清理HTTP头链表
curl_slist_free_all(headers);
// 错误处理
if (res != CURLE_OK) {
std::cerr << "curl_easy_perform() failed: " << curl_easy_strerror(res) << std::endl;
} else {
std::cout << readBuffer << std::endl;
}
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return 0;
}
7 * 24
多渠道服务支持
专业服务
云业务全流程支持
值得信赖
可以依赖的合作伙伴
专属贴身服务
1V1贴身服务,专属保障
建议反馈
优化建议反馈