available_ground_stations
Creates, updates, deletes, gets or lists an available_ground_stations resource.
Overview
| Name | available_ground_stations |
| Type | Resource |
| Id | azure_extras.orbital.available_ground_stations |
Fields
The following fields are returned by SELECT queries:
- list_by_capability
| Name | Datatype | Description |
|---|---|---|
id | string | ID of groundStation. |
name | string | Name of the ground station. |
altitudeMeters | number | Altitude of the ground station. |
city | string | City of ground station. |
latitudeDegrees | number | Latitude of the ground station in decimal degrees. |
location | string | Azure region. |
longitudeDegrees | number | Longitude of the ground station in decimal degrees. |
providerName | string | Ground station provider name. |
releaseMode | string | Release Status of a ground station. Known values are: "Preview" and "GA". |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_capability | select | subscription_id, capability | Returns list of available ground stations. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
capability | string | Ground Station Capability. Known values are: "EarthObservation" and "Communication". Required. |
subscription_id | string |
SELECT examples
- list_by_capability
Returns list of available ground stations.
SELECT
id,
name,
altitudeMeters,
city,
latitudeDegrees,
location,
longitudeDegrees,
providerName,
releaseMode,
type
FROM azure_extras.orbital.available_ground_stations
WHERE subscription_id = '{{ subscription_id }}' -- required
AND capability = '{{ capability }}' -- required
;