add skip_geometry to remaining feature providers (#887)

* skip geometry for SQLite/GPKG backends (#886)

* simplify GKPG

* add for remaining providers, add to doc
This commit is contained in:
Tom Kralidis
2022-04-19 13:44:56 -04:00
committed by GitHub
parent 36b88e0719
commit 356fe1280c
7 changed files with 52 additions and 20 deletions
@@ -15,17 +15,17 @@ pygeoapi core feature providers are listed below, along with a matrix of support
parameters.
.. csv-table::
:header: Provider, property filters/display, resulttype, bbox, datetime, sortby, CQL
:header: Provider, property filters/display, resulttype, bbox, datetime, sortby, skipGeometry, CQL
:align: left
CSV,✅/✅,results/hits,❌,❌,❌,❌
Elasticsearch,✅/✅,results/hits,✅,✅,✅,✅
GeoJSON,✅/✅,results/hits,❌,❌,❌,❌
MongoDB,✅/❌,results,✅,✅,✅,❌
OGR,✅/❌,results/hits,✅,❌,❌,❌
PostgreSQL,✅/✅,results/hits,✅,❌,✅,❌
SQLiteGPKG,✅/❌,results/hits,✅,❌,❌,❌
SensorThingsAPI,✅/✅,results/hits,✅,✅,✅,❌
CSV,✅/✅,results/hits,❌,❌,❌,✅,
Elasticsearch,✅/✅,results/hits,✅,✅,✅,✅,✅
GeoJSON,✅/✅,results/hits,❌,❌,❌,✅,
MongoDB,✅/❌,results,✅,✅,✅,✅,
OGR,✅/❌,results/hits,✅,❌,❌,✅,
PostgreSQL,✅/✅,results/hits,✅,❌,✅,✅,
SQLiteGPKG,✅/❌,results/hits,✅,❌,❌,✅,
SensorThingsAPI,✅/✅,results/hits,✅,✅,✅,✅,
Below are specific connection examples based on supported providers.