GALILEO 18 (26E)
1 41862U 16069D 25126.61035802 .00000051 00000-0 00000-0 0 9990
2 41862 55.2538 112.3437 0004919 298.1144 61.8273 1.70474404 52717
GALILEO 18 (26E)
1 41862U 16069D 25124.26402029 .00000045 00000-0 00000-0 0 9991
2 41862 55.2524 112.4086 0004929 297.5756 62.3619 1.70474395 52670
GALILEO 18 (26E)
1 41862U 16069D 25123.09084844 .00000040 00000-0 00000+0 0 9996
2 41862 55.2517 112.4411 0004928 297.5332 62.4008 1.70474409 52650
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 41862,
'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=41862&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=41862&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=41862&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: 41862,
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=41862&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=41862&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": "GALILEO 18 (26E)",
"OBJECT_ID": "2016-069D",
"EPOCH": "2025-05-06T14:38:55+0000",
"MEAN_MOTION": 1.704744,
"ECCENTRICITY": 0.0004919,
"INCLINATION": 55.2538,
"RA_OF_ASC": 112.3437,
"ARG_OF_PER": 298.1144,
"MEAN_ANOMALY": 61.8273,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 41862,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 5271,
"BSTAR": 0,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 29600.274,
"APOGEE": 23236.7,
"PERIGEE": 23236.7,
"PERIOD": 844.7016,
"LINE1": "1 41862U 16069D 25126.61035802 .00000051 00000-0 00000-0 0 9990",
"LINE2": "2 41862 55.2538 112.3437 0004919 298.1144 61.8273 1.70474404 52717"
}
{
"OBJECT_NAME": "GALILEO 18 (26E)",
"OBJECT_ID": "2016-069D",
"EPOCH": "2025-05-04T06:20:11+0000",
"MEAN_MOTION": 1.704743,
"ECCENTRICITY": 0.0004929,
"INCLINATION": 55.2524,
"RA_OF_ASC": 112.4086,
"ARG_OF_PER": 297.5756,
"MEAN_ANOMALY": 62.3619,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 41862,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 5267,
"BSTAR": 0,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 29600.286,
"APOGEE": 23236.741,
"PERIGEE": 23236.741,
"PERIOD": 844.7021,
"LINE1": "1 41862U 16069D 25124.26402029 .00000045 00000-0 00000-0 0 9991",
"LINE2": "2 41862 55.2524 112.4086 0004929 297.5756 62.3619 1.70474395 52670"
}
{
"OBJECT_NAME": "GALILEO 18 (26E)",
"OBJECT_ID": "2016-069D",
"EPOCH": "2025-05-03T02:10:49+0000",
"MEAN_MOTION": 1.704744,
"ECCENTRICITY": 0.0004928,
"INCLINATION": 55.2517,
"RA_OF_ASC": 112.4411,
"ARG_OF_PER": 297.5332,
"MEAN_ANOMALY": 62.4008,
"EPHEMERIS_TYPE": 0,
"CLASSIFICATION": "U",
"NORAD_CAT_ID": 41862,
"ELEMENT_SET_NO": 999,
"REV_AT_EPOCH": 5265,
"BSTAR": 0,
"MEAN_MOTION_DOT": 0,
"MEAN_MOTION_DOT_DOT": 0,
"SEMIMAJOR_AXIS": 29600.274,
"APOGEE": 23236.727,
"PERIGEE": 23236.727,
"PERIOD": 844.7016,
"LINE1": "1 41862U 16069D 25123.09084844 .00000040 00000-0 00000+0 0 9996",
"LINE2": "2 41862 55.2517 112.4411 0004928 297.5332 62.4008 1.70474409 52650"
}
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 41862,
'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=41862&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=41862&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=41862&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: 41862,
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=41862&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=41862&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 |
29600.274Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
61.8273°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
298.1144°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
112.3437°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
55.2538°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0004919
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-05-06T14:38:55+0000
| 轨道数据的历元时间。 |
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
29600.286Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
62.3619°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
297.5756°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
112.4086°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
55.2524°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0004929
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-05-04T06:20:11+0000
| 轨道数据的历元时间。 |
参数名称 | English | 值 | 描述 |
---|
半长轴(a) | SEMIMAJOR_AXIS |
29600.274Km
| 轨道的平均半径,单位为公里。 |
平近点角(M) | MEAN_ANOMALY |
62.4008°
| 卫星与轨道参考位置的角度,单位为度。 |
近地点角(ω) | ARG_OF_PER |
297.5332°
| 近地点和升交点之间的夹度,单位为度。 |
升交点赤经(Ω) | RA_OF_ASC |
112.4411°
| 即升交点经度,单位为度。 |
轨道倾角(i) | INCLINATION |
55.2517°
| 轨道平面与赤道平面之间的夹角,单位为度。 |
偏心率(e) | ECCENTRICITY |
0.0004928
| 描述轨道的椭圆形状。 |
历元时间 | EPOCH |
2025-05-03T02:10:49+0000
| 轨道数据的历元时间。 |
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
params = {
'catId': 41862,
'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=41862&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=41862&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=41862&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: 41862,
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=41862&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=41862&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贴身服务,专属保障
建议反馈
优化建议反馈