本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
AWS Ground Station 位置
AWS Ground Station 提供與 AWS 基礎設施區域全球網路近在咫尺的全球地面站網路。您可以從任何支援的 AWS 區域設定使用這些位置。這包括交付資料的 AWS 區域。
尋找地面站點位置 AWS 的區域
AWS Ground Station 全球網路包含的地面站位置不是實際位於其連線的 AWS 區域中
| Ground Station 名稱 | Ground Station 位置 | AWS 區域名稱 | AWS 區域代碼 | 備註 |
|---|---|---|---|---|
| 阿拉斯加 1 | 美國阿拉斯加 | 美國西部 (奧勒岡) | us-west-2 | 不是實際位於 AWS 區域 |
| 巴林 1 | 巴林 | Middle East (Bahrain) | me-south-1 | |
| 開普敦 1 | 南非開普敦 | Africa (Cape Town) | 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 | |
| Punta Arenas 1 | Punta Arenas,智利 | 南美洲 (聖保羅) | sa-east-1 | 不是實際位於 AWS 區域 |
| 首爾 1 | 首爾、南韓 | 亞太區域 (首爾) | ap-northeast-2 | |
| 新加坡 1 | 新加坡 | 亞太區域 (新加坡) | ap-southeast-1 | |
| 斯德哥爾摩 1 | 瑞典斯德哥爾摩 | Europe (Stockholm) | eu-north-1 |
AWS Ground Station 支援的 AWS 區域
您可以透過 AWS 開發套件或從支援的 AWS 區域 AWS Ground Station 提供資料和設定您的聯絡人。您可以在端點和AWS Ground Station 配額中檢視支援的區域及其相關聯的端點。
數位分身可用性
使用 AWS Ground Station 數位分身功能 適用於所有 AWS Ground Station 可使用 的 AWS 區域
專用天線
除了上述公開可用的地面站位置之外, AWS Ground Station 還提供專用天線。專用天線是一種自訂建置的天線系統,可代表您 AWS 管理 。專用天線不限於現有的 AWS Ground Station 地面站位置,並且可以使用公有地面站以外的功能建置,如中所述AWS Ground Station 站點功能。不公開專用天線的位置和功能。
如需專用天線的詳細資訊,請參閱 AWS Ground Station 專用天線。若要進一步了解或開始使用專用天線, AWS 支援 請透過 聯絡 AWS Support Center Console
在地面工作站檢視天線
每個地面站位置都有一或多個天線。您可以使用 ListAntennas API 在地面工作站檢視天線。此 API 會在指定的地面站傳回天線,包括每個天線的名稱。
天線資訊在與 ListGroundStationReservations API 結合時很有用,可了解地面工作站的容量和可用性。如需檢視保留的詳細資訊,請參閱 檢視地面站點保留。
若要呼叫 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()