-
Notifications
You must be signed in to change notification settings - Fork 7
pygeoapi query samples
Joost van Ulden edited this page Mar 25, 2021
·
16 revisions
OGC API Features: https://geo-api.dev.riskprofiler.ca/collections/nhsl_hazard_threat_all_indicators_s
Note: these samples are written in Elasticsearch query syntax
{
"query": {
"geo_shape": {
"geometry": {
"shape": {
"type": "circle",
"radius": "20km",
"coordinates": [ -118, 49 ]
}
}
}
}
}
{
"query": {
"bool": {
"must": {
"match_all": {}
},
"filter": {
"geo_shape": {
"geometry": {
"shape": {
"type": "envelope",
"coordinates": [ [ -118.7, 50 ], [ -118.4, 49.9 ] ]
},
"relation": "intersects"
}
}
}
}
}
}
Wikis: data | model-factory | opendrr-api | opendrr | python-env | riskprofiler-cms