Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 457 Bytes

README.md

File metadata and controls

21 lines (20 loc) · 457 Bytes

!Elasticsearch Open Events Database

Example queries

curl -XGET localhost:9200/events/event/_search?pretty=true -d '
{
         "query" : {
             "match_all" : {}
         },
         "filter" : {
             "geo_distance" : {
                 "distance" : "10km",
                 "event.location.geo" : {
                     "lat" : "51.96066",
                     "lon" : "7.62613"
                 }
             }
         }
}
'