Created
January 23, 2018 13:50
-
-
Save dunice/3ccd7d83ca6ddaa63c11013b84e659aa to your computer and use it in GitHub Desktop.
Revisions
-
dunice created this gist
Jan 23, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ GET /local_aircraft/aircraft/_search { "_source": "*", "query": { "bool" : { "must" : [ { "script": { "script": { "lang": "painless", "source": "MY_SCRIPT", "params": { "lat": 44.225277, "lon": -76.596944, "climb_speed": 463, "descent_speed": 370.4, "climb_time": 15, "descent_time": 15, "fuel_time": 15, "departure_at": "2018-12-11T18:50:00+00:00" } } } } ] } } }