Features
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://data.example.com/buildings/123",
"rel": "alternate",
"type": "application/geo+json",
"hreflang": "en",
"title": "Trierer Strasse 70, 53115 Bonn"
}
],
"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"
]
}
]
}Changes
Changed in 2 of the 8 revisions of this API.11
- ○
endpoint added
endpoint-added
- ○
- ▲
api path removed without deprecation
api-path-removed-without-deprecation
This revision also has 20 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲