Download OpenAPI specification:Download
This is an OpenAPI definition of the SpatioTemporal Asset Catalog API specification.
Retrieve Items matching filters. Intended as a shorthand API for simple queries.
This method is required to implement.
If this endpoint is implemented on a server, it is required to add a
link referring to this endpoint with rel
set to search
to the
links
array in GET /
. As GET
is the default method, the method
may not be set explicitly in the link.
Array of numbers or Array of numbers Only features that have a geometry that intersects the bounding box are selected. The bounding box is provided as four or six numbers, depending on whether the coordinate reference system includes a vertical axis (height or depth):
The coordinate reference system of the values is WGS 84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84). For WGS 84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge). If the vertical axis is included, the third and the sixth number are the bottom and the top of the 3-dimensional bounding box. If a feature has multiple spatial geometry properties, it is the decision of the server whether only a single spatial geometry property is used to determine the extent or all relevant geometries. Example: The bounding box of the New Zealand Exclusive Economic Zone in
WGS 84 (from 160.6°E to 170°W and from 55.95°S to 25.89°S) would be
represented in JSON as | |
pointGeoJSON (object) or multipointGeoJSON (object) or linestringGeoJSON (object) or multilinestringGeoJSON (object) or polygonGeoJSON (object) or multipolygonGeoJSON (object) or geometrycollectionGeoJSON (object) (geometryGeoJSON) The optional intersects parameter filters the result Items in the same was as bbox, only with a GeoJSON Geometry rather than a bbox. | |
datetime | string Either a date-time or an interval, open or closed. Date and time expressions adhere to RFC 3339. Open intervals are expressed using double-dots. Examples:
Only features that have a temporal property that intersects the value of
If a feature has multiple temporal properties, it is the decision of the server whether only a single temporal property is used to determine the extent or all relevant temporal properties. |
limit | integer [ 1 .. 10000 ] Default: 10 The optional limit parameter recommends the number of items that should be present in the response document. Only items are counted that are on the first level of the collection in the response document. Nested objects contained within the explicitly requested items shall not be counted. Minimum = 1. Maximum = 10000. Default = 10. |
ids | Array of strings (ids) Array of Item ids to return. |
collections | Array of strings (collectionsArray) Array of Collection IDs to include in the search for items. Only Item objects in one of the provided collections will be searched |
fields | string Example: fields=id,type,-geometry,bbox,properties,-links,-assets Extension: Fields Determines the shape of the features in the response |
sortby | string Example: sortby=+id,-properties.eo:cloud_cover Extension: Sort An array of property names, prefixed by either "+" for ascending or "-" for descending. If no prefix is provided, "+" is assumed. |
{- "type": "FeatureCollection",
- "features": [
- {
- "stac_version": "1.0.0",
- "type": "Feature",
- "id": "CS3-20160503_132131_05",
- "bbox": [
- -122.59750209,
- 37.48803556,
- -122.2880486,
- 37.613537207
], - "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.308150179,
- 37.488035566
], - [
- -122.597502109,
- 37.538869539
], - [
- -122.576687533,
- 37.613537207
], - [
- -122.2880486,
- 37.562818007
], - [
- -122.308150179,
- 37.488035566
]
]
]
}, - "properties": {
- "datetime": "2016-05-03T13:22:30.040Z",
- "title": "A CS3 item",
- "license": "PDDL-1.0",
- "view:sun_azimuth": 168.7,
- "eo:cloud_cover": 0.12,
- "view:off_nadir": 1.4,
- "platform": "coolsat2",
- "instruments": [
- "cool_sensor_v1"
], - "eo:bands": [ ],
- "view:sun_elevation": 33.4,
- "eo:gsd": 0.512
}, - "collection": "CS3",
- "links": [
], - "assets": {
- "analytic": {
- "title": "4-Band Analytic"
}, - "thumbnail": {
- "title": "Thumbnail"
}
}
}
], - "links": [
- {
- "rel": "next",
}
], - "context": {
- "returned": 1,
- "limit": 5,
- "matched": 314159
}
}
Retrieve items matching filters. Intended as the standard, full-featured query API.
This method is optional to implement, but recommended.
If this endpoint is implemented on a server, it is required to add a
link referring to this endpoint with rel
set to search
and method
set to POST
to the links
array in GET /
.
bbox | Array of numbers (schemas-bbox) [ 4 .. 6 ] items Only features that have a geometry that intersects the bounding box are selected. The bounding box is provided as four or six numbers, depending on whether the coordinate reference system includes a vertical axis (elevation or depth):
The coordinate reference system of the values is WGS84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84). For WGS84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge). If a feature has multiple spatial geometry properties, it is the decision of the server whether only a single spatial geometry property is used to determine the extent or all relevant geometries. Example: The bounding box of the New Zealand Exclusive Economic Zone in
WGS 84 (from 160.6°E to 170°W and from 55.95°S to 25.89°S) would be
represented in JSON as |
datetime | string (datetime_interval) Either a date-time or an interval, open or closed. Date and time expressions adhere to RFC 3339. Open intervals are expressed using double-dots. Examples:
Only features that have a temporal property that intersects the value of
If a feature has multiple temporal properties, it is the decision of the server whether only a single temporal property is used to determine the extent or all relevant temporal properties. |
pointGeoJSON (object) or multipointGeoJSON (object) or linestringGeoJSON (object) or multilinestringGeoJSON (object) or polygonGeoJSON (object) or multipolygonGeoJSON (object) or geometrycollectionGeoJSON (object) (geometryGeoJSON) | |
collections | Array of strings (collectionsArray) Array of Collection IDs to include in the search for items. Only Item objects in one of the provided collections will be searched. |
ids | Array of strings (ids) Array of Item ids to return. |
limit | integer (limit) [ 1 .. 10000 ] Default: 10 The optional limit parameter limits the number of items that are presented in the response document. If the limit parameter value is greater than advertised limit maximum, the server shall return the maximum possible number of items, rather than responding with an error. Only items are counted that are on the first level of the collection in the response document. Nested objects contained within the explicitly requested items shall not be counted. Minimum = 1. Maximum = 10000. Default = 10. |
object (fields) The include and exclude members specify an array of property names that are either included or excluded from the result, respectively. If both include and exclude are specified, include takes precedence. Values should include the full JSON path of the property. | |
Array of objects (sortby) non-empty An array of objects containing a property name and sort direction. |
{- "bbox": [
- -110,
- 39.5,
- -105,
- 40.5
], - "datetime": "2018-02-12T00:00:00Z/2018-03-18T12:31:12Z",
- "intersects": {
- "type": "Point",
- "coordinates": [
- 0,
- 0
]
}, - "collections": [
- "string"
], - "ids": [
- "string"
], - "limit": 10,
- "fields": {
- "include": [
- "id",
- "properties.eo:cloud_cover"
], - "exclude": [
- "geometry",
- "properties.datetime"
]
}, - "sortby": [
- {
- "field": "properties.eo:cloud_cover",
- "direction": "asc"
}, - {
- "field": "id",
- "direction": "desc"
}
]
}
{- "type": "FeatureCollection",
- "features": [
- {
- "stac_version": "1.0.0",
- "type": "Feature",
- "id": "CS3-20160503_132131_05",
- "bbox": [
- -122.59750209,
- 37.48803556,
- -122.2880486,
- 37.613537207
], - "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.308150179,
- 37.488035566
], - [
- -122.597502109,
- 37.538869539
], - [
- -122.576687533,
- 37.613537207
], - [
- -122.2880486,
- 37.562818007
], - [
- -122.308150179,
- 37.488035566
]
]
]
}, - "properties": {
- "datetime": "2016-05-03T13:22:30.040Z",
- "title": "A CS3 item",
- "license": "PDDL-1.0",
- "view:sun_azimuth": 168.7,
- "eo:cloud_cover": 0.12,
- "view:off_nadir": 1.4,
- "platform": "coolsat2",
- "instruments": [
- "cool_sensor_v1"
], - "eo:bands": [ ],
- "view:sun_elevation": 33.4,
- "eo:gsd": 0.512
}, - "collection": "CS3",
- "links": [
], - "assets": {
- "analytic": {
- "title": "4-Band Analytic"
}, - "thumbnail": {
- "title": "Thumbnail"
}
}
}
], - "links": [
- {
- "rel": "next",
}
]
}
{- "type": "Catalog",
- "stac_version": "1.0.0",
- "id": "sentinel",
- "title": "Copernicus Sentinel Imagery",
- "description": "Catalog of Copernicus Sentinel 1 and 2 imagery.",
- "links": [
- {
- "rel": "self",
- "type": "application/json",
- "title": "this document"
}, - {
- "rel": "service-desc",
- "type": "application/vnd.oai.openapi+json;version=3.0",
- "title": "the API definition"
}, - {
- "rel": "service-doc",
- "type": "text/html",
- "title": "the API documentation"
}, - {
- "rel": "child",
- "type": "application/json",
- "title": "Sentinel 1 Catalog"
}, - {
- "rel": "child",
- "type": "application/json",
- "title": "Sentinel 2 Catalog"
}
]
}
A body of Feature Collections that belong or are used together with additional links. Request may not return the full set of metadata per Feature Collection.
{- "links": [
- {
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "GET",
- "headers": {
- "Accept": "application/json"
}, - "body": { },
- "merge": false
}
], - "collections": [
- {
- "stac_version": "1.0.0",
- "stac_extensions": [ ],
- "type": "Collection",
- "id": "Sentinel-2",
- "title": "Sentinel-2 MSI: MultiSpectral Instrument, Level-1C",
- "description": "Sentinel-2 is a wide-swath, high-resolution, multi-spectral\nimaging mission...\n",
- "license": "proprietary",
- "keywords": [
- "copernicus",
- "esa",
- "eu",
- "msi",
- "radiance",
- "sentinel"
], - "providers": [
- {
- "name": "ESA",
- "roles": [
- "producer",
- "licensor"
],
}
], - "extent": {
- "spatial": {
- "bbox": [
- [
- -180,
- -56,
- 180,
- 83
]
]
}, - "temporal": {
- "interval": [
- [
- "2015-06-23T00:00:00Z",
- "2019-07-10T13:44:56Z"
]
]
}
}, - "summaries": {
- "datetime": {
- "min": "2015-06-23T00:00:00Z",
- "max": "2019-07-10T13:44:56Z"
}, - "sci:citation": [
- "Copernicus Sentinel data [Year]"
], - "eo:gsd": [
- 10,
- 30,
- 60
], - "platform": [
- "sentinel-2a",
- "sentinel-2b"
], - "constellation": [
- "sentinel-2"
], - "instruments": [
- "msi"
], - "view:off_nadir": {
- "min": 0,
- "max": 100
}, - "view:sun_elevation": {
- "min": 6.78,
- "max": 89.9
}, - "eo:bands": [
- [
- {
- "name": "B1",
- "common_name": "coastal",
- "center_wavelength": 4.439
}, - {
- "name": "B2",
- "common_name": "blue",
- "center_wavelength": 4.966
}, - {
- "name": "B3",
- "common_name": "green",
- "center_wavelength": 5.6
}, - {
- "name": "B4",
- "common_name": "red",
- "center_wavelength": 6.645
}, - {
- "name": "B5",
- "center_wavelength": 7.039
}, - {
- "name": "B6",
- "center_wavelength": 7.402
}, - {
- "name": "B7",
- "center_wavelength": 7.825
}, - {
- "name": "B8",
- "common_name": "nir",
- "center_wavelength": 8.351
}, - {
- "name": "B8A",
- "center_wavelength": 8.648
}, - {
- "name": "B9",
- "center_wavelength": 9.45
}, - {
- "name": "B10",
- "center_wavelength": 1.3735
}, - {
- "name": "B11",
- "common_name": "swir16",
- "center_wavelength": 1.6137
}, - {
- "name": "B12",
- "common_name": "swir22",
- "center_wavelength": 2.2024
}
]
]
}, - "links": [
- {
- "rel": "license",
- "title": "Legal notice on the use of Copernicus Sentinel Data and Service Information"
}
]
}
]
}
A single Feature Collection for the given if collectionId
.
Request this endpoint to get a full list of metadata for the Feature Collection.
collectionId required | string local identifier of a collection |
{- "stac_version": "1.0.0",
- "stac_extensions": [ ],
- "type": "Collection",
- "id": "Sentinel-2",
- "title": "Sentinel-2 MSI: MultiSpectral Instrument, Level-1C",
- "description": "Sentinel-2 is a wide-swath, high-resolution, multi-spectral\nimaging mission...\n",
- "license": "proprietary",
- "keywords": [
- "copernicus",
- "esa",
- "eu",
- "msi",
- "radiance",
- "sentinel"
], - "providers": [
- {
- "name": "ESA",
- "roles": [
- "producer",
- "licensor"
],
}
], - "extent": {
- "spatial": {
- "bbox": [
- [
- -180,
- -56,
- 180,
- 83
]
]
}, - "temporal": {
- "interval": [
- [
- "2015-06-23T00:00:00Z",
- "2019-07-10T13:44:56Z"
]
]
}
}, - "summaries": {
- "datetime": {
- "min": "2015-06-23T00:00:00Z",
- "max": "2019-07-10T13:44:56Z"
}, - "sci:citation": [
- "Copernicus Sentinel data [Year]"
], - "eo:gsd": [
- 10,
- 30,
- 60
], - "platform": [
- "sentinel-2a",
- "sentinel-2b"
], - "constellation": [
- "sentinel-2"
], - "instruments": [
- "msi"
], - "view:off_nadir": {
- "min": 0,
- "max": 100
}, - "view:sun_elevation": {
- "min": 6.78,
- "max": 89.9
}, - "eo:bands": [
- [
- {
- "name": "B1",
- "common_name": "coastal",
- "center_wavelength": 4.439
}, - {
- "name": "B2",
- "common_name": "blue",
- "center_wavelength": 4.966
}, - {
- "name": "B3",
- "common_name": "green",
- "center_wavelength": 5.6
}, - {
- "name": "B4",
- "common_name": "red",
- "center_wavelength": 6.645
}, - {
- "name": "B5",
- "center_wavelength": 7.039
}, - {
- "name": "B6",
- "center_wavelength": 7.402
}, - {
- "name": "B7",
- "center_wavelength": 7.825
}, - {
- "name": "B8",
- "common_name": "nir",
- "center_wavelength": 8.351
}, - {
- "name": "B8A",
- "center_wavelength": 8.648
}, - {
- "name": "B9",
- "center_wavelength": 9.45
}, - {
- "name": "B10",
- "center_wavelength": 1.3735
}, - {
- "name": "B11",
- "common_name": "swir16",
- "center_wavelength": 1.6137
}, - {
- "name": "B12",
- "common_name": "swir22",
- "center_wavelength": 2.2024
}
]
]
}, - "links": [
- {
- "rel": "license",
- "title": "Legal notice on the use of Copernicus Sentinel Data and Service Information"
}
]
}
Fetch features of the feature collection with id collectionId
.
Every feature in a dataset belongs to a collection. A dataset may consist of multiple feature collections. A feature collection is often a collection of features of a similar type, based on a common schema.
collectionId required | string local identifier of a collection |
limit | integer [ 1 .. 10000 ] Default: 10 The optional limit parameter recommends the number of items that should be present in the response document. Only items are counted that are on the first level of the collection in the response document. Nested objects contained within the explicitly requested items shall not be counted. Minimum = 1. Maximum = 10000. Default = 10. |
Array of numbers or Array of numbers Only features that have a geometry that intersects the bounding box are selected. The bounding box is provided as four or six numbers, depending on whether the coordinate reference system includes a vertical axis (height or depth):
The coordinate reference system of the values is WGS 84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84). For WGS 84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge). If the vertical axis is included, the third and the sixth number are the bottom and the top of the 3-dimensional bounding box. If a feature has multiple spatial geometry properties, it is the decision of the server whether only a single spatial geometry property is used to determine the extent or all relevant geometries. Example: The bounding box of the New Zealand Exclusive Economic Zone in
WGS 84 (from 160.6°E to 170°W and from 55.95°S to 25.89°S) would be
represented in JSON as | |
datetime | string Either a date-time or an interval, open or closed. Date and time expressions adhere to RFC 3339. Open intervals are expressed using double-dots. Examples:
Only features that have a temporal property that intersects the value of
If a feature has multiple temporal properties, it is the decision of the server whether only a single temporal property is used to determine the extent or all relevant temporal properties. |
{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.308150179,
- 37.488035566
], - [
- -122.597502109,
- 37.538869539
], - [
- -122.576687533,
- 37.613537207
], - [
- -122.2880486,
- 37.562818007
], - [
- -122.308150179,
- 37.488035566
]
], - 0
]
}, - "properties": {
- "datetime": "2016-05-03T13:22:30.040Z",
- "title": "A CS3 item",
- "license": "PDDL-1.0",
- "view:sun_azimuth": 168.7,
- "eo:cloud_cover": 0.12,
- "view:off_nadir": 1.4,
- "platform": "coolsat2",
- "instruments": [
- "cool_sensor_v1"
], - "eo:bands": [ ],
- "view:sun_elevation": 33.4,
- "eo:gsd": 0.512
}, - "stac_version": "1.0.0",
- "id": "CS3-20160503_132131_05",
- "bbox": [
- -122.59750209,
- 37.48803556,
- -122.2880486,
- 37.613537207
], - "collection": "CS3",
- "links": [
], - "assets": {
- "analytic": {
- "title": "4-Band Analytic"
}, - "thumbnail": {
- "title": "Thumbnail"
}
}
}
], - "links": [
- {
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "GET",
- "headers": {
- "Accept": "application/json"
}, - "body": { },
- "merge": false
}
], - "timeStamp": "2017-08-17T08:05:32Z",
- "numberMatched": 127,
- "numberReturned": 10
}
create a new STAC Item in a specific collection
collectionId required | string local identifier of a collection |
stac_version required | string (STAC version) |
Array of Reference to a JSON Schema (string) or Reference to a core extension (string) (STAC extensions) unique | |
id required | string (itemId) Provider identifier, a unique ID. |
bbox required | Array of numbers (schemas-bbox) [ 4 .. 6 ] items Only features that have a geometry that intersects the bounding box are selected. The bounding box is provided as four or six numbers, depending on whether the coordinate reference system includes a vertical axis (elevation or depth):
The coordinate reference system of the values is WGS84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84). For WGS84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge). If a feature has multiple spatial geometry properties, it is the decision of the server whether only a single spatial geometry property is used to determine the extent or all relevant geometries. Example: The bounding box of the New Zealand Exclusive Economic Zone in
WGS 84 (from 160.6°E to 170°W and from 55.95°S to 25.89°S) would be
represented in JSON as |
required | pointGeoJSON (object) or multipointGeoJSON (object) or linestringGeoJSON (object) or multilinestringGeoJSON (object) or polygonGeoJSON (object) or multipolygonGeoJSON (object) or geometrycollectionGeoJSON (object) (geometryGeoJSON) |
type required | string (itemType) Value: "Feature" The GeoJSON type |
required | Array of objects (links) |
required | object (properties) provides the core metadata fields plus extensions |
required | object (assets) |
{- "stac_version": "1.0.0",
- "type": "Feature",
- "id": "CS3-20160503_132131_05",
- "bbox": [
- -122.59750209,
- 37.48803556,
- -122.2880486,
- 37.613537207
], - "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.308150179,
- 37.488035566
], - [
- -122.597502109,
- 37.538869539
], - [
- -122.576687533,
- 37.613537207
], - [
- -122.2880486,
- 37.562818007
], - [
- -122.308150179,
- 37.488035566
]
]
]
}, - "properties": {
- "datetime": "2016-05-03T13:22:30.040Z",
- "title": "A CS3 item",
- "license": "PDDL-1.0",
- "view:sun_azimuth": 168.7,
- "eo:cloud_cover": 0.12,
- "view:off_nadir": 1.4,
- "platform": "coolsat2",
- "instruments": [
- "cool_sensor_v1"
], - "eo:bands": [ ],
- "view:sun_elevation": 33.4,
- "eo:gsd": 0.512
}, - "collection": "CS3",
- "links": [
], - "assets": {
- "analytic": {
- "title": "4-Band Analytic"
}, - "thumbnail": {
- "title": "Thumbnail"
}
}
}
{- "stac_version": "1.0.0",
- "type": "Feature",
- "id": "CS3-20160503_132131_05",
- "bbox": [
- -122.59750209,
- 37.48803556,
- -122.2880486,
- 37.613537207
], - "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.308150179,
- 37.488035566
], - [
- -122.597502109,
- 37.538869539
], - [
- -122.576687533,
- 37.613537207
], - [
- -122.2880486,
- 37.562818007
], - [
- -122.308150179,
- 37.488035566
]
]
]
}, - "properties": {
- "datetime": "2016-05-03T13:22:30.040Z",
- "title": "A CS3 item",
- "license": "PDDL-1.0",
- "view:sun_azimuth": 168.7,
- "eo:cloud_cover": 0.12,
- "view:off_nadir": 1.4,
- "platform": "coolsat2",
- "instruments": [
- "cool_sensor_v1"
], - "eo:bands": [ ],
- "view:sun_elevation": 33.4,
- "eo:gsd": 0.512
}, - "collection": "CS3",
- "links": [
], - "assets": {
- "analytic": {
- "title": "4-Band Analytic"
}, - "thumbnail": {
- "title": "Thumbnail"
}
}
}
Fetch the feature with id featureId
in the feature collection
with id collectionId
.
collectionId required | string local identifier of a collection |
featureId required | string local identifier of a feature |
{- "stac_version": "1.0.0",
- "type": "Feature",
- "id": "CS3-20160503_132131_05",
- "bbox": [
- -122.59750209,
- 37.48803556,
- -122.2880486,
- 37.613537207
], - "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.308150179,
- 37.488035566
], - [
- -122.597502109,
- 37.538869539
], - [
- -122.576687533,
- 37.613537207
], - [
- -122.2880486,
- 37.562818007
], - [
- -122.308150179,
- 37.488035566
]
]
]
}, - "properties": {
- "datetime": "2016-05-03T13:22:30.040Z",
- "title": "A CS3 item",
- "license": "PDDL-1.0",
- "view:sun_azimuth": 168.7,
- "eo:cloud_cover": 0.12,
- "view:off_nadir": 1.4,
- "platform": "coolsat2",
- "instruments": [
- "cool_sensor_v1"
], - "eo:bands": [ ],
- "view:sun_elevation": 33.4,
- "eo:gsd": 0.512
}, - "collection": "CS3",
- "links": [
], - "assets": {
- "analytic": {
- "title": "4-Band Analytic"
}, - "thumbnail": {
- "title": "Thumbnail"
}
}
}
Use this method to update an existing feature. Requires the entire GeoJSON description be submitted.
collectionId required | string local identifier of a collection |
featureId required | string local identifier of a feature |
If-Match required | string Only take the action if the ETag of the item still matches |
The request body shall contain a representation of the replacement item.
stac_version required | string (STAC version) |
Array of Reference to a JSON Schema (string) or Reference to a core extension (string) (STAC extensions) unique | |
id required | string (itemId) Provider identifier, a unique ID. |
bbox required | Array of numbers (schemas-bbox) [ 4 .. 6 ] items Only features that have a geometry that intersects the bounding box are selected. The bounding box is provided as four or six numbers, depending on whether the coordinate reference system includes a vertical axis (elevation or depth):
The coordinate reference system of the values is WGS84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84). For WGS84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge). If a feature has multiple spatial geometry properties, it is the decision of the server whether only a single spatial geometry property is used to determine the extent or all relevant geometries. Example: The bounding box of the New Zealand Exclusive Economic Zone in
WGS 84 (from 160.6°E to 170°W and from 55.95°S to 25.89°S) would be
represented in JSON as |
required | pointGeoJSON (object) or multipointGeoJSON (object) or linestringGeoJSON (object) or multilinestringGeoJSON (object) or polygonGeoJSON (object) or multipolygonGeoJSON (object) or geometrycollectionGeoJSON (object) (geometryGeoJSON) |
type required | string (itemType) Value: "Feature" The GeoJSON type |
required | Array of objects (links) |
required | object (properties) provides the core metadata fields plus extensions |
required | object (assets) |
{- "stac_version": "1.0.0",
- "type": "Feature",
- "id": "CS3-20160503_132131_05",
- "bbox": [
- -122.59750209,
- 37.48803556,
- -122.2880486,
- 37.613537207
], - "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -122.308150179,
- 37.488035566
], - [
- -122.597502109,
- 37.538869539
], - [
- -122.576687533,
- 37.613537207
], - [
- -122.2880486,
- 37.562818007
], - [
- -122.308150179,
- 37.488035566
]
]
]
}, - "properties": {
- "datetime": "2016-05-03T13:22:30.040Z",
- "title": "A CS3 item",
- "license": "PDDL-1.0",
- "view:sun_azimuth": 168.7,
- "eo:cloud_cover": 0.12,
- "view:off_nadir": 1.4,
- "platform": "coolsat2",
- "instruments": [
- "cool_sensor_v1"
], - "eo:bands": [ ],
- "view:sun_elevation": 33.4,
- "eo:gsd": 0.512
}, - "collection": "CS3",
- "links": [
], - "assets": {
- "analytic": {
- "title": "4-Band Analytic"
}, - "thumbnail": {
- "title": "Thumbnail"
}
}
}
{- "code": "string",
- "description": "string"
}
Use this method to update an existing feature. Requires a GeoJSON fragment (containing the fields to be updated) be submitted.
collectionId required | string local identifier of a collection |
featureId required | string local identifier of a feature |
If-Match | string Only take the action if the ETag of the item still matches |
stac_version | string (STAC version) |
Array of Reference to a JSON Schema (string) or Reference to a core extension (string) (STAC extensions) unique | |
id | string (itemId) Provider identifier, a unique ID. |
Array of numbers or Array of numbers (bbox) [ 4 .. 6 ] items Only features that have a geometry that intersects the bounding box are selected. The bounding box is provided as four or six numbers, depending on whether the coordinate reference system includes a vertical axis (elevation or depth):
The coordinate reference system of the values is WGS84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84). For WGS84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge). If a feature has multiple spatial geometry properties, it is the decision of the server whether only a single spatial geometry property is used to determine the extent or all relevant geometries. Example: The bounding box of the New Zealand Exclusive Economic Zone in
WGS 84 (from 160.6°E to 170°W and from 55.95°S to 25.89°S) would be
represented in JSON as | |
pointGeoJSON (object) or multipointGeoJSON (object) or linestringGeoJSON (object) or multilinestringGeoJSON (object) or polygonGeoJSON (object) or multipolygonGeoJSON (object) or geometrycollectionGeoJSON (object) (geometryGeoJSON) | |
type | string (itemType) Value: "Feature" The GeoJSON type |
object (partialItemProperties) allows for partial collections of metadata fields | |
Array of objects (Link) | |
object (assets) |
{- "assets": {
- "analytic": {
- "title": "1-Band Analytic",
}
}
}
{- "code": "string",
- "description": "string"
}
Use this method to delete an existing feature.
collectionId required | string local identifier of a collection |
featureId required | string local identifier of a feature |
If-Match required | string Only take the action if the ETag of the item still matches |
{- "code": "string",
- "description": "string"
}