COSMOS 2384 - 轨道数据

    以下数据来自
    AOE轨道数据库
    , 查看更多轨道数据
    
                
    import requests
    
    headers = {
        'Authorization': 'Bearer YOUR_API_TOKEN'
    }
    
    params = {
        'catId': 27055,
        'channel': 'KY',
        'format': 'TLE'
    }
    
    response = requests.get('https://spacemapper.cn/cgi/orbital/aoe/list',
    headers=headers, params=params)
    
    print(response.text)