RADUGA 15 - AOE轨道数据


            
import requests

headers = {
    'Authorization': 'Bearer YOUR_API_TOKEN'
}

params = {
    'catId': 15057,
    'channel': 'INTERNATIONAL',
    'format': 'TLE'
}

response = requests.get('https://spacemapper.cn/cgi/orbital/aoe/list',
headers=headers, params=params)

print(response.text)