-
-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for TinyDB feature provider (#1724)
* add support for TinyDB as a feature provider (#1723) * add tests * update CITE setup * add/update docs * update sample CITE config * update copyright year * reorder imports * fix formatting * delineate features/records via overloading * remove now unused test data * move CITE data to tests/data * fix ref * remove HYDAT from GitHub Actions * remove print statement
- Loading branch information
1 parent
e8ce021
commit d9adbbd
Showing
12 changed files
with
403 additions
and
1,345 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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# | ||
# Authors: Tom Kralidis <[email protected]> | ||
# | ||
# Copyright (c) 2023 Tom Kralidis | ||
# Copyright (c) 2024 Tom Kralidis | ||
# | ||
# Permission is hereby granted, free of charge, to any person | ||
# obtaining a copy of this software and associated documentation | ||
|
@@ -60,6 +60,7 @@ | |
'SensorThings': 'pygeoapi.provider.sensorthings.SensorThingsProvider', | ||
'SQLiteGPKG': 'pygeoapi.provider.sqlite.SQLiteGPKGProvider', | ||
'Socrata': 'pygeoapi.provider.socrata.SODAServiceProvider', | ||
'TinyDB': 'pygeoapi.provider.tinydb_.TinyDBProvider', | ||
'TinyDBCatalogue': 'pygeoapi.provider.tinydb_.TinyDBCatalogueProvider', | ||
'WMSFacade': 'pygeoapi.provider.wms_facade.WMSFacadeProvider', | ||
'WMTSFacade': 'pygeoapi.provider.wmts_facade.WMTSFacadeProvider', | ||
|
Oops, something went wrong.