permission is strictly prohibited 74 Lab 5: Step 6 # Geo distance aggregation POST census/_search?search_type=count { "aggs": { "donuts_around_omaha": { "geo_distance": { "field": "location", "origin": { "lat": 41.26, "lon": -96.01 }, "unit": "mi", "ranges": [ { "to": 10 }, { "from": 10, "to": 20 }, { "from": 20, "to": 30 }, { "from": 30, "to": 40 }, { "from": 40, "to": 50 }, { "from": 50, "to": 60 }, { "from": 60, "to": 70 }, { "from": 70, "to": 80 }, { "from": 80 } ] } } } }