

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# 加入衛星
<a name="getting-started.step1"></a>

 將衛星加入 AWS Ground Station 是一個多步驟程序，涉及資料收集、技術驗證、頻譜授權，以及整合和測試。也需要保密協議 (NDAs)。

## 客戶加入程序概觀
<a name="customer-onboarding-process"></a>

 衛星加入是一種手動程序，可在 AWS Ground Station 主控台頁面[的衛星和資源](https://console.aws.amazon.com/groundstation/home#resources)區段中找到。以下說明整體程序。

1. 檢閱 [AWS Ground Station 位置](aws-ground-station-antenna-locations.md)區段，判斷您的衛星是否符合地理和無線電頻率特性。

1.  若要開始讓衛星加入 AWS Ground Station，請在 AWS Ground Station 主控台頁面[的衛星和資源區段上提交衛星](https://console.aws.amazon.com/groundstation/home#resources)加入問卷。請包含任務和衛星需求的簡短摘要，包括您的組織名稱、所需的頻率、衛星的啟動時間、衛星的軌道類型，以及您是否計劃使用 [使用 AWS Ground Station 數位分身功能](digital-twin.md)。

1.  審核並核准您的請求後， AWS Ground Station 會在您計劃使用的特定位置申請法規授權。此步驟的持續時間會根據位置和任何現有法規而有所不同。

1.  取得此核准後，您的衛星就會顯示供您使用。 AWS Ground Station 會傳送成功更新的通知給您。

## （選用） 命名衛星
<a name="tagging-satellites"></a>

 加入後，您可能想要將名稱新增至衛星記錄，以便更輕鬆地辨識它。 AWS Ground Station 使用聯絡人頁面時，主控台能夠顯示使用者定義的衛星名稱以及 Norad ID。顯示衛星名稱可讓您在排程時更輕鬆地選取正確的衛星。若要這樣做，可以使用[標籤](https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/what-are-tags.html)。

 您可以使用 AWS CLI 或其中一個 AWS 開發套件，透過 tag-resource API 來標記 AWS Ground Station SDKs。 [https://docs.aws.amazon.com/cli/latest/reference/groundstation/tag-resource.html](https://docs.aws.amazon.com/cli/latest/reference/groundstation/tag-resource.html)本指南將介紹如何使用 AWS Ground Station CLI 在 中標記公有廣播衛星 Aqua (Norad ID 27424)`us-west-2`。

 **AWS Ground Station CLI** 

 AWS CLI 可用來與 互動 AWS Ground Station。使用 AWS CLI 標記您的衛星之前，必須滿足下列 AWS CLI 先決條件：
+  確定 AWS CLI 已安裝 。如需安裝的資訊 AWS CLI，請參閱[安裝 AWS CLI 第 2 版](https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html)。
+ 確定 AWS CLI 已設定。如需設定的相關資訊 AWS CLI，請參閱[設定 AWS CLI 第 2 版](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html)。
+  將常用的組態設定和登入資料儲存在 AWS CLI維護的檔案中。您需要這些設定和登入資料來預留和管理 AWS Ground Station 聯絡人 AWS CLI。如需儲存組態和登入資料設定的詳細資訊，請參閱[組態和登入資料檔案設定。 ](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html)

 AWS CLI 設定好並準備好使用後，請檢閱 [AWS Ground Station CLI 命令參考](https://docs.aws.amazon.com/cli/latest/reference/groundstation/index.html)頁面，以熟悉可用的命令。使用此服務時，請遵循 AWS CLI 命令結構，並使用 為命令加上字首`groundstation`，以指定 AWS Ground Station 做為您要使用的服務。如需 AWS CLI 命令結構的詳細資訊，請參閱 [AWS CLI 頁面中的命令結構](https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-commandstructure.html)。以下提供命令結構範例。

```
aws groundstation <command> <subcommand> [options and parameters]
```

 **命名衛星** 

 首先，您需要取得要標記之衛星的 ARN (ASN)。這可以透過 AWS CLI 中的 [ list-satellites ](https://docs.aws.amazon.com/cli/latest/reference/groundstation/list-satellites.html) API 完成：

```
aws groundstation list-satellites --region us-west-2
```

執行上述 CLI 命令將傳回類似以下的輸出：

```
{
    "satellites": [
        {
            "groundStations": [
                "Ohio 1",
                "Oregon 1"
            ],
            "noradSatelliteID": 27424,
            "satelliteArn": "arn:aws:groundstation::111111111111:satellite/11111111-2222-3333-4444-555555555555",
            "satelliteId": "11111111-2222-3333-4444-555555555555"
        }
    ]
}
```

 尋找您要標記的衛星，並記下 `satelliteArn`。標記的一個重要注意事項是，[Tag-resource ](https://docs.aws.amazon.com/cli/latest/reference/groundstation/tag-resource.html) API 需要區域 ARN，而 [list-satellites ](https://docs.aws.amazon.com/cli/latest/reference/groundstation/list-satellites.html) 傳回的 ARN 是全域的。對於下一個步驟，您應該將 ARN 擴大為您想要查看標籤的區域 （可能是您排程的區域）。在此範例中，我們使用 `us-west-2`。透過此變更，ARN 將來自：

```
arn:aws:groundstation::111111111111:satellite/11111111-2222-3333-4444-555555555555
```

至:

```
arn:aws:groundstation:{{us-west-2}}:111111111111:satellite/11111111-2222-3333-4444-555555555555
```

 若要在主控台中顯示衛星名稱，衛星必須具有 ` “Name"`標籤做為金鑰。此外，因為我們使用的是 AWS CLI，引號必須以反斜線逸出。標籤看起來會類似：

```
{\"Name\":\"AQUA\"}
```

接著，您將呼叫 [tag-resource ](https://docs.aws.amazon.com/cli/latest/reference/groundstation/tag-resource.html) API 來標記衛星。這可以使用 AWS CLI 類似 來完成：

```
aws groundstation tag-resource --region us-west-2 --resource-arn arn:aws:groundstation:us-west-2:111111111111:satellite/11111111-2222-3333-4444-555555555555 --tags '{"Name":"AQUA"}'
```

 執行此操作後，您將能夠在 主控台中 AWS Ground Station 看到您為衛星設定的名稱。

 **變更衛星的名稱** 

 如果您想要變更衛星的名稱，您可以使用相同的`“Name”`金鑰再次使用衛星 ARN 呼叫 [ tag-resource](https://docs.aws.amazon.com/cli/latest/reference/groundstation/tag-resource.html)，但在標籤中具有不同的值。這將更新現有的標籤，並在主控台中顯示新名稱。對此的範例呼叫如下所示：

```
aws groundstation tag-resource --region us-west-2 --resource-arn arn:aws:groundstation:us-west-2:111111111111:satellite/11111111-2222-3333-4444-555555555555 --tags '{"Name":"NewName"}'
```

 **移除衛星的名稱** 

 可以使用 [untag-resource ](https://docs.aws.amazon.com/cli/latest/reference/groundstation/untag-resource.html) API 移除衛星的名稱集。此 API 需要具有標籤所在區域的衛星 ARN，以及標籤索引鍵清單。對於名稱，標籤索引鍵為 `“Name”`。使用 AWS CLI 呼叫此 API 的範例如下所示：

```
aws groundstation untag-resource --region us-west-2 --resource-arn arn:aws:groundstation:us-west-2:111111111111:satellite/11111111-2222-3333-4444-555555555555 --tag-keys Name
```

## 公有廣播衛星
<a name="public-broadcast-satellites"></a>

 除了加入您自己的衛星之外，您還可以請求加入支援公開廣播衛星，以提供可公開存取的下行通訊路徑。這可讓您使用 從這些衛星 AWS Ground Station 下行資料。

**注意**  
 您將無法向上連結至這些衛星。您只能使用可公開存取的下行通訊路徑。

 AWS Ground Station 支援加入下列衛星以下行直接廣播資料：
+ Aqua
+ SNPP
+ JPSS-1/NOAA-20
+ Terra

加入後，即可存取這些衛星以供立即使用。 AWS Ground Station 會維護許多預先設定的 CloudFormation 範本，讓您更輕鬆地開始使用服務。如需 AWS Ground Station 如何使用 的範例[範例任務設定檔組態](examples.md)，請參閱 。

如需有關這些衛星，以及這些衛星傳輸的資料種類詳細資訊，請參閱 [Aqua](https://aqua.nasa.gov/)、[JPSS-1/NOAA-20 and SNPP](https://www.nesdis.noaa.gov/our-satellites/currently-flying/joint-polar-satellite-system) 和 [Terra](https://terra.nasa.gov/)。