Skip to main content

scenes

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

Overview

Namescenes
TypeResource
Idazure_extras.agrifood_farming.scenes

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_rawexecprovider, partyId, boundaryId, source, endpointstartDateTime, endDateTime, maxCloudCoveragePercentage, maxDarkPixelCoveragePercentage, skipTokenReturns a paginated list of scene resources.
get_satellite_data_ingestion_job_detailsexecjob_id, endpointGet a satellite data ingestion job.
create_satellite_data_ingestion_jobexecjob_id, endpointCreate a satellite data ingestion job.
get_stac_featureexeccollection_id, feature_id, endpointGet a feature(SpatioTemporal Asset Catalog (STAC) Item) for given collection and feature id.
downloadexecfilePath, endpointDownloads and returns file Stream as response for the given input filePath.
search_featuresexeccollection_id, endpointmaxpagesize, skipSearch for STAC features by collection id, bbox, intersecting geometry, start and end datetime.

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
boundaryIdstringBoundaryId. Required.
collection_idstringCollection Id to be searched. Known values are: "Sentinel_2_L2A" and "Sentinel_2_L1C". Required.
endpointstringThe service endpoint host (no scheme). (default: )
feature_idstringFeature Id to be fetched. Required.
filePathstringcloud storage path of scene file. Required.
job_idstringJobId provided by user. Required.
partyIdstringPartyId. Required.
providerstringProvider name of scene data. Required.
sourcestringSource name of scene data, Available Values: Sentinel_2_L2A, Sentinel_2_L1C. Required.
endDateTimestring (date-time)Scene end UTC datetime (inclusive), sample format: yyyy-MM-dThh:mm:ssZ. Default value is None.
maxCloudCoveragePercentagenumberFilter scenes with cloud coverage percentage less than max value. Range [0 to 100.0]. Default value is 100.
maxDarkPixelCoveragePercentagenumberFilter scenes with dark pixel coverage percentage less than max value. Range [0 to 100.0]. Default value is 100.
maxpagesizeintegerMaximum number of features needed (inclusive). Minimum = 1, Maximum = 100, Default value = 10. Default value is 10.
skipintegerSkip token for getting next set of results. Default value is None.
skipTokenstringSkip token for getting next set of results. Default value is None.
startDateTimestring (date-time)Scene start UTC datetime (inclusive), sample format: yyyy-MM-ddThh:mm:ssZ. Default value is None.

Lifecycle Methods

Returns a paginated list of scene resources.

EXEC azure_extras.agrifood_farming.scenes.list_raw 
@provider='{{ provider }}' --required,
@partyId='{{ partyId }}' --required,
@boundaryId='{{ boundaryId }}' --required,
@source='{{ source }}' --required,
@endpoint='{{ endpoint }}' --required,
@startDateTime='{{ startDateTime }}',
@endDateTime='{{ endDateTime }}',
@maxCloudCoveragePercentage='{{ maxCloudCoveragePercentage }}',
@maxDarkPixelCoveragePercentage='{{ maxDarkPixelCoveragePercentage }}',
@skipToken='{{ skipToken }}'
;