Features
Get the feature collections in the dataset
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.
get/collections
Response
The feature collections shared by this API.
The dataset is organized as one or more feature collections. This resource provides information about and access to the collections.
The response contains the list of collections. For each collection, a link to the items in the collection (path /collections/{collectionId}/items, link relation items) as well as key information about the collection. This information includes:
- A local identifier for the collection that is unique for the dataset;
- A list of coordinate reference systems (CRS) in which geometries may be returned by the server. The first CRS is the default coordinate reference system (the default is always WGS 84 with axis order longitude/latitude);
- An optional title and description for the collection;
- An optional extent that can be used to provide an indication of the spatial and temporal extent of the collection - typically derived from the data;
- An optional indicator about the type of the items in the collection (the default value, if the indicator is not provided, is 'feature').
Example response
{
"links": [
{
"headers": {
"Accept": "application/json"
}
}
],
"collections": [
{
"stac_version": "1.1.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"
],
"url": "https://sentinel.esa.int/web/sentinel/user-guides/sentinel-2-msi"
}
],
"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": "self",
"href": "http://cool-sat.com/collections/Sentinel-2"
},
{
"rel": "root",
"href": "http://cool-sat.com/collections"
},
{
"rel": "license",
"href": "https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf",
"title": "Legal notice on the use of Copernicus Sentinel Data and Service Information"
},
{
"rel": "queryables",
"href": "http://cool-sat.com/collections/Sentinel-2/queryables",
"title": "queryables for this collection"
}
]
}
]
}