Skip to content

Instantly share code, notes, and snippets.

@dunice
Created January 23, 2018 13:50
Show Gist options
  • Select an option

  • Save dunice/3ccd7d83ca6ddaa63c11013b84e659aa to your computer and use it in GitHub Desktop.

Select an option

Save dunice/3ccd7d83ca6ddaa63c11013b84e659aa to your computer and use it in GitHub Desktop.

Revisions

  1. dunice created this gist Jan 23, 2018.
    29 changes: 29 additions & 0 deletions query.json
    Original 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"
    }
    }
    }
    }
    ]
    }
    }
    }