STARLINK-2190 - AOE轨道数据


              
import requests

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

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

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

print(response.text)
          
3D轨道图
2D轨道图