-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #489 from opengeospatial/owslib-client-impl
add OWSLib as a client implementation
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# OWSLib | ||
|
||
This page shows how to connect with [OWSLib](https://geopython.github.io/OWSLib) to an API that implements OGC API - Environmental Data Retrieval - Part 1: Core. | ||
|
||
## Links | ||
|
||
- [OWSLib OGC API - Environmental Data Retrieval documentation](http://geopython.github.io/OWSLib/#ogc-api-environmental-data-retrieval-1-0) | ||
|
||
## Software version | ||
|
||
This description uses the latest OWSLib release. | ||
|
||
## Required and supported Conformance classes | ||
|
||
The API must support the following conformance classes: | ||
|
||
- [Core](http://www.opengis.net/spec/ogcapi-edr-1/1.1/req/core) | ||
- [Queries](http://www.opengis.net/spec/ogcapi-edr-1/1.1/req/queries) | ||
- [JSON](http://www.opengis.net/spec/ogcapi-edr-1/1.1/req/json) conformance classes. | ||
- [GeoJSON](http://www.opengis.net/spec/ogcapi-edr-1/1.1/req/geojson) conformance classes. | ||
- [EDR GeoJSON](http://www.opengis.net/spec/ogcapi-edr-1/1.1/req/edr-geojson) conformance classes. | ||
- [OpenAPI 3.0](http://www.opengis.net/spec/ogcapi-edr-1/1.1/req/oas30) conformance classes. | ||
|
||
## Examples | ||
|
||
The examples in the OWSLib [documentation](https://owslib.readthedocs.io/en/latest/usage.html#ogc-api-environmental-data-retrieval-part-1-core-1-0) as well as [tests](https://github.com/geopython/OWSLib/blob/master/tests/test_ogcapi_edr_pygeoapi.py) exemplify functionality using position queries (note that any supported API server side query is possible). |