PlanetaryComputerModelFactory.StacItemCollection Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
https://github.com/radiantearth/stac-spec/blob/v1.0.0/item-spec/itemcollection-spec.md Represents a collection of STAC Items as a GeoJSON FeatureCollection.
public static Azure.Analytics.PlanetaryComputer.StacItemCollection StacItemCollection(string stacVersion = default, System.Collections.Generic.IEnumerable<Azure.Analytics.PlanetaryComputer.StacLink> links = default, DateTimeOffset? createdOn = default, DateTimeOffset? updatedOn = default, string shortDescription = default, System.Collections.Generic.IEnumerable<string> stacExtensions = default, System.Collections.Generic.IEnumerable<Azure.Analytics.PlanetaryComputer.StacItem> features = default, System.Collections.Generic.IEnumerable<float> boundingBox = default, Azure.Analytics.PlanetaryComputer.StacContextExtension context = default);
static member StacItemCollection : string * seq<Azure.Analytics.PlanetaryComputer.StacLink> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * string * seq<string> * seq<Azure.Analytics.PlanetaryComputer.StacItem> * seq<single> * Azure.Analytics.PlanetaryComputer.StacContextExtension -> Azure.Analytics.PlanetaryComputer.StacItemCollection
Public Shared Function StacItemCollection (Optional stacVersion As String = Nothing, Optional links As IEnumerable(Of StacLink) = Nothing, Optional createdOn As Nullable(Of DateTimeOffset) = Nothing, Optional updatedOn As Nullable(Of DateTimeOffset) = Nothing, Optional shortDescription As String = Nothing, Optional stacExtensions As IEnumerable(Of String) = Nothing, Optional features As IEnumerable(Of StacItem) = Nothing, Optional boundingBox As IEnumerable(Of Single) = Nothing, Optional context As StacContextExtension = Nothing) As StacItemCollection
Parameters
- stacVersion
- String
Stac Version.
- links
- IEnumerable<StacLink>
Links to related resources and endpoints.
- createdOn
- Nullable<DateTimeOffset>
MSFT Created.
- updatedOn
- Nullable<DateTimeOffset>
MSFT Updated.
- shortDescription
- String
MSFT Short Description.
- stacExtensions
- IEnumerable<String>
URLs to STAC extensions implemented by this STAC resource.
- features
- IEnumerable<StacItem>
Array of STAC Items in the collection.
- boundingBox
- IEnumerable<Single>
Bounding box of all items in format [west, south, east, north].
- context
- StacContextExtension
Context information for the search response.
Returns
A new StacItemCollection instance for mocking.