STARLINK-11162
1 60123U 24118L 25124.80516618 .00031660 00000-0 26501-3 0 9990
2 60123 53.1557 303.6448 0000733 104.2741 255.8358 15.69725635 50202
STARLINK-11162
1 60123U 24118L 25123.85012789 .00004793 00000-0 44390-4 0 9998
2 60123 53.1569 308.3503 0000605 97.1149 262.9937 15.69708873 49338
STARLINK-11162
1 60123U 24118L 25122.95875370 .00007815 00000-0 69337-4 0 9997
2 60123 53.1562 312.7438 0001113 128.6203 231.4915 15.69697536 49917
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 60123,
'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=60123&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=60123&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=60123&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: 60123,
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=60123&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=60123&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-11162",
"OBJECT_ID": "2024-118L",
"EPOCH": "2025-05-04T19:19:26+0000",
"MEAN_MOTION": 15.697256,
"ECCENTRICITY": 0.0000733,
"INCLINATION": 53.1557,
"RA_OF_ASC": 303.6448,
"ARG_OF_PER": 104.2741,
"MEAN_ANOMALY": 255.8358,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 60123,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 5020,
"BSTAR": 0.000265,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6737.82,
"APOGEE": 360.179,
"PERIGEE": 360.179,
"PERIOD": 91.7358,
"LINE1": "1 60123U 24118L 25124.80516618 .00031660 00000-0 26501-3 0 9990",
"LINE2": "2 60123 53.1557 303.6448 0000733 104.2741 255.8358 15.69725635 50202"
}
{
"OBJECT_NAME": "STARLINK-11162",
"OBJECT_ID": "2024-118L",
"EPOCH": "2025-05-03T20:24:11+0000",
"MEAN_MOTION": 15.697088,
"ECCENTRICITY": 0.0000605,
"INCLINATION": 53.1569,
"RA_OF_ASC": 308.3503,
"ARG_OF_PER": 97.1149,
"MEAN_ANOMALY": 262.9937,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 60123,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 4933,
"BSTAR": 0.0000444,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6737.868,
"APOGEE": 360.141,
"PERIGEE": 360.141,
"PERIOD": 91.7368,
"LINE1": "1 60123U 24118L 25123.85012789 .00004793 00000-0 44390-4 0 9998",
"LINE2": "2 60123 53.1569 308.3503 0000605 97.1149 262.9937 15.69708873 49338"
}
{
"OBJECT_NAME": "STARLINK-11162",
"OBJECT_ID": "2024-118L",
"EPOCH": "2025-05-02T23:00:36+0000",
"MEAN_MOTION": 15.696975,
"ECCENTRICITY": 0.0001113,
"INCLINATION": 53.1562,
"RA_OF_ASC": 312.7438,
"ARG_OF_PER": 128.6203,
"MEAN_ANOMALY": 231.4915,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 60123,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 4991,
"BSTAR": 0.0000693,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6737.9,
"APOGEE": 360.515,
"PERIGEE": 360.515,
"PERIOD": 91.7374,
"LINE1": "1 60123U 24118L 25122.95875370 .00007815 00000-0 69337-4 0 9997",
"LINE2": "2 60123 53.1562 312.7438 0001113 128.6203 231.4915 15.69697536 49917"
}
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 60123,
'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=60123&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=60123&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=60123&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: 60123,
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=60123&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=60123&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.82Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
255.8358°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
104.2741°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
303.6448°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.1557°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0000733
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-05-04T19:19:26+0000
| 轨道数据的历元时间。 |
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
6737.868Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
262.9937°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
97.1149°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
308.3503°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.1569°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0000605
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-05-03T20:24:11+0000
| 轨道数据的历元时间。 |
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
6737.9Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
231.4915°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
128.6203°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
312.7438°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.1562°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0001113
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-05-02T23:00:36+0000
| 轨道数据的历元时间。 |
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 60123,
'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=60123&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=60123&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=60123&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: 60123,
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=60123&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=60123&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贴身服务,专属保障
建议反馈
优化建议反馈