View a markdown version of this page

AWS Ground Station 地点 - AWS Ground Station

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

AWS Ground Station 地点

AWS Ground Station 提供全球地面站网络,紧邻我们的 AWS 基础设施区域全球网络。您可以从任何支持的 AWS 区域配置对这些位置的使用。这包括传输数据的 AWS 区域。

Map showing shared locations with antenna and data delivery regions marked.

查找地面站位置的 AWS 区域

AWS Ground Station 全球网络包括实际位置不在与之相连的 AWS 地区的地面站地点。您可以通过 AWS 开发工具包 ListGroundStation响应检索您有权访问的地面站列表。地面站位置的完整列表如下所示,更多的地面站位置即将推出。请参阅入职指南,为您的卫星添加或修改场地许可。

Ground Station 名称 Ground Station 位置 AWS 区域名称 AWS 区域代码 注意
阿拉斯加 1 美国阿拉斯加州 美国西部(俄勒冈州) us-west-2 实际不位于某个 AWS 区域
巴林 1 巴林 中东(巴林) me-south-1
开普敦 1 南非开普敦 非洲(开普敦) af-south-1
Dubbo 1 澳大利亚达博 亚太地区(悉尼) ap-southeast-2 实际不位于某个 AWS 区域
夏威夷 1 美国夏威夷 美国西部(俄勒冈州) us-west-2 实际不位于某个 AWS 区域
爱尔兰 1 爱尔兰 欧洲地区(爱尔兰) eu-west-1
俄亥俄州 1 美国俄亥俄州 美国东部(俄亥俄州) us-east-2
俄勒冈 1 美国俄勒冈州 美国西部(俄勒冈州) us-west-2
蓬塔阿雷纳斯 1 智利蓬塔阿雷纳斯 南美洲(圣保罗) sa-east-1 实际不位于某个 AWS 区域
首尔 1 韩国首尔 亚太地区(首尔) ap-northeast-2
新加坡 1 新加坡 亚太地区(新加坡) ap-southeast-1
斯德哥尔摩 1 斯德哥尔摩,瑞典 欧洲地区(斯德哥尔摩) eu-north-1

AWS Ground Station 支持的 AWS 区域

您可以通过 AWS 软件开发工具包或支持的 AWS 区域的 AWS Ground Station 控制台提供数据和配置联系人。您可以在终端节点和配额处查看支持的区域及其关联的AWS Ground Station 终端节点

数字双胞胎可用性

使用 AWS Ground Station 数字双胞胎功能适用于所有可用的 AW AWS Ground Station S 区域。数字双胞胎地面站是生产地面站的精确副本,Ground Station 名称的前缀修改为 “数字双胞胎”。例如,“Digital Twin Ohio 1” 是一个数字双胞胎地面站,它是 “俄亥俄一号” 生产地面站的精确副本。

专用天线

除了上面列出的公开地面站位置外, AWS Ground Station 还提供专用天线。专用天线是一种定制的天线系统,可以代表您进行 AWS 管理。专用天线不限于现有的地 AWS Ground Station 面站位置,其建造的功能可以超出公共地面站的功能,如中所述AWS Ground Station 网站能力。专用天线的位置和功能未公开披露。

有关专用天线的更多信息,请参阅。AWS Ground Station 专用天线要了解更多信息或开始使用专用天线,请 AWS 支持 通过以下方式联系。AWS Support Center Console

在地面站查看天线

每个地面站位置都有一根或多根天线。您可以使用 API 查看地面站的天线。ListAntennas此 API 返回指定地面站的天线,包括每根天线的名称。

当天线信息与 ListGroundStationReservationsAPI 结合使用时,有助于了解地面站的容量和可用性。有关查看预订的更多信息,请参阅查看地面站预订

要拨打电话ListAntennas,您必须将卫星载入地面站,或者拥有地面站的方位角高程星历权限。有关更多信息,请参阅 提供方位角高程星历数据

示例:列出地面站的天线

以下示例列出了使用适用于 Python 的 AWS SDK (Boto3) 的地面站的所有天线。

import boto3 # Create AWS Ground Station client ground_station_client = boto3.client("groundstation") # The ground station ID to list antennas for. # Use the ListGroundStations API to find available ground station IDs. ground_station_id = "Ohio 1" # List all antennas at a ground station. # This is useful for understanding the capacity of a ground station # and for planning multi-antenna operations. print(f"Listing antennas for ground station '{ground_station_id}'...") paginator = ground_station_client.get_paginator("list_antennas") page_iterator = paginator.paginate( groundStationId=ground_station_id, PaginationConfig={ "MaxItems": 100, "PageSize": 20, }, ) for page in page_iterator: for antenna in page["antennaList"]: print(f" Antenna: {antenna['antennaName']}") print(f" Ground Station: {antenna['groundStationName']}") print(f" Region: {antenna['region']}") print()