STARLINK-1838
1 47129U 20088H 25118.04660880 .00757632 26780-3 15976-2 0 9996
2 47129 53.0388 217.0410 0011256 320.0349 27.7736 15.98184318245385
STARLINK-1838
1 47129U 20088H 25117.70016344 .00042752 12029-4 10000-3 0 9994
2 47129 53.0386 218.8240 0011184 320.0017 193.6753 15.97605900245336
STARLINK-1838
1 47129U 20088H 25116.56294903 .00038354 11821-4 10000-3 0 9998
2 47129 53.0399 224.6799 0010374 311.2476 141.5522 15.95807244245154
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 47129,
'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=47129&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=47129&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=47129&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: 47129,
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=47129&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=47129&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-1838",
"OBJECT_ID": "2020-088H",
"EPOCH": "2025-04-28T01:07:07+0000",
"MEAN_MOTION": 15.981843,
"ECCENTRICITY": 0.0011256,
"INCLINATION": 53.0388,
"RA_OF_ASC": 217.041,
"ARG_OF_PER": 320.0349,
"MEAN_ANOMALY": 27.7736,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 47129,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 24538,
"BSTAR": 0.0015976,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6657.594,
"APOGEE": 286.953,
"PERIGEE": 286.953,
"PERIOD": 90.1022,
"LINE1": "1 47129U 20088H 25118.04660880 .00757632 26780-3 15976-2 0 9996",
"LINE2": "2 47129 53.0388 217.0410 0011256 320.0349 27.7736 15.98184318245385"
}
{
"OBJECT_NAME": "STARLINK-1838",
"OBJECT_ID": "2020-088H",
"EPOCH": "2025-04-27T16:48:14+0000",
"MEAN_MOTION": 15.976059,
"ECCENTRICITY": 0.0011184,
"INCLINATION": 53.0386,
"RA_OF_ASC": 218.824,
"ARG_OF_PER": 320.0017,
"MEAN_ANOMALY": 193.6753,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 47129,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 24533,
"BSTAR": 0.0001,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6659.201,
"APOGEE": 288.514,
"PERIGEE": 288.514,
"PERIOD": 90.1349,
"LINE1": "1 47129U 20088H 25117.70016344 .00042752 12029-4 10000-3 0 9994",
"LINE2": "2 47129 53.0386 218.8240 0011184 320.0017 193.6753 15.97605900245336"
}
{
"OBJECT_NAME": "STARLINK-1838",
"OBJECT_ID": "2020-088H",
"EPOCH": "2025-04-26T13:30:39+0000",
"MEAN_MOTION": 15.958072,
"ECCENTRICITY": 0.0010374,
"INCLINATION": 53.0399,
"RA_OF_ASC": 224.6799,
"ARG_OF_PER": 311.2476,
"MEAN_ANOMALY": 141.5522,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 47129,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 24515,
"BSTAR": 0.0001,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 6664.204,
"APOGEE": 292.983,
"PERIGEE": 292.983,
"PERIOD": 90.2365,
"LINE1": "1 47129U 20088H 25116.56294903 .00038354 11821-4 10000-3 0 9998",
"LINE2": "2 47129 53.0399 224.6799 0010374 311.2476 141.5522 15.95807244245154"
}
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 47129,
'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=47129&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=47129&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=47129&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: 47129,
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=47129&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=47129&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 |
6657.594Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
27.7736°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
320.0349°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
217.041°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.0388°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0011256
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-04-28T01:07:07+0000
| 轨道数据的历元时间。 |
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
6659.201Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
193.6753°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
320.0017°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
218.824°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.0386°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0011184
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-04-27T16:48:14+0000
| 轨道数据的历元时间。 |
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
6664.204Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
141.5522°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
311.2476°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
224.6799°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
53.0399°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0010374
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-04-26T13:30:39+0000
| 轨道数据的历元时间。 |
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 47129,
'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=47129&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=47129&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=47129&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: 47129,
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=47129&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=47129&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贴身服务,专属保障
建议反馈
优化建议反馈