Capabilities
the feature collections in the dataset
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": [
{
"href": "http://www.geoserver.example/stac/naip/child/catalog.json",
"rel": "child",
"type": "application/json",
"hreflang": "en",
"title": "NAIP Child Catalog"
}
],
"collections": [
{
"id": "address",
"title": "address",
"description": "An address.",
"links": [
{
"href": "http://data.example.com/buildings",
"rel": "item"
},
{
"href": "http://example.com/concepts/buildings.html",
"rel": "describedBy",
"type": "text/html"
}
],
"extent": {
"spatial": {
"bbox": [
[
-180,
-90,
180,
90
]
]
},
"temporal": {
"interval": [
[
"2011-11-11T12:22:11Z",
null
]
]
}
},
"crs": [
"http://www.opengis.net/def/crs/OGC/1.3/CRS84",
"http://www.opengis.net/def/crs/EPSG/0/4326"
]
}
]
}