Skip to main content

available_ground_stations

Creates, updates, deletes, gets or lists an available_ground_stations resource.

Overview

Nameavailable_ground_stations
TypeResource
Idazure_extras.orbital.available_ground_stations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of groundStation.
namestringName of the ground station.
altitudeMetersnumberAltitude of the ground station.
citystringCity of ground station.
latitudeDegreesnumberLatitude of the ground station in decimal degrees.
locationstringAzure region.
longitudeDegreesnumberLongitude of the ground station in decimal degrees.
providerNamestringGround station provider name.
releaseModestringRelease Status of a ground station. Known values are: "Preview" and "GA".
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_capabilityselectsubscription_id, capabilityReturns 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.

NameDatatypeDescription
capabilitystringGround Station Capability. Known values are: "EarthObservation" and "Communication". Required.
subscription_idstring

SELECT examples

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
;