Skip to main content

spacecrafts_available_contacts

Creates, updates, deletes, gets or lists a spacecrafts_available_contacts resource.

Overview

Namespacecrafts_available_contacts
TypeResource
Idazure.orbital.spacecrafts_available_contacts

Fields

NameDatatypeDescription
groundStationNamestringName of Azure Ground Station.
propertiesobjectProperties of Contact resource.
spacecraftobjectThe reference to the spacecraft resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, spacecraftName, subscriptionId, data__contactProfile, data__endTime, data__groundStationName, data__startTimeReturns list of available contacts. A contact is available if the spacecraft is visible from the ground station for more than the minimum viable contact duration provided in the contact profile.

SELECT examples

Returns list of available contacts. A contact is available if the spacecraft is visible from the ground station for more than the minimum viable contact duration provided in the contact profile.

SELECT
groundStationName,
properties,
spacecraft
FROM azure.orbital.spacecrafts_available_contacts
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND spacecraftName = '{{ spacecraftName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__contactProfile = '{{ data__contactProfile }}'
AND data__endTime = '{{ data__endTime }}'
AND data__groundStationName = '{{ data__groundStationName }}'
AND data__startTime = '{{ data__startTime }}';