Skip to content

Instantly share code, notes, and snippets.

@dunice
Created January 23, 2018 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dunice/3ccd7d83ca6ddaa63c11013b84e659aa to your computer and use it in GitHub Desktop.
Save dunice/3ccd7d83ca6ddaa63c11013b84e659aa to your computer and use it in GitHub Desktop.
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"
}
}
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment