-
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
Note: these samples are written in Elasticsearch query syntax
{
"query": {
"range": {
"properties.MHn_Intensity": {
"gte": 0.59,
"lte": 0.60
}
}
}
}
{
"query": {
"range": {
"properties.MHn_Intensity": {
"gte": 0.59
}
}
}
}
{
"query": {
"match": {
"properties.MHt_Concrete" : 4.0
}
}
}
COMING VERY SOON
{
"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