Skip to content

Commit

Permalink
move OGC API - Features endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis authored Mar 22, 2024
1 parent 4f45544 commit a4397f2
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions owslib/ogcapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,29 +227,3 @@ def collection(self, collection_id: str) -> dict:

path = f'collections/{collection_id}'
return self._request(path=path)

def collection_schema(self, collection_id: str) -> dict:
"""
implements /collections/{collectionId}/schema
@type collection_id: string
@param collection_id: id of collection
@returns: `dict` of feature collection schema
"""

path = f'collections/{collection_id}/schema'
return self._request(path=path)

def collection_queryables(self, collection_id: str) -> dict:
"""
implements /collections/{collectionId}/queryables
@type collection_id: string
@param collection_id: id of collection
@returns: `dict` of feature collection queryables
"""

path = f'collections/{collection_id}/queryables'
return self._request(path=path)

0 comments on commit a4397f2

Please sign in to comment.