action ljaero_aerodromes_by_route_us_v1_aerodromes_route_query_post { label: "Retrieve aerodromes found along a route." description: "Retrieve aerodromes found along a route. Request body parameters are:\n* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.\n\nSuccessful requests return a GeoJSON FeatureCollection, with a separate Feature for each\nAerodrome found. All Features will include properties for the facility name, ident,\ntype, and operational status." provider: ljaero method: POST path: "/us/v1/aerodromes/route-query" encoding: json input: { type: "object" properties: { route: { type: "object" } "x-api-key": { type: "string" } } required: ["route"] additionalProperties: false } output: { type: "object" required: ["found"] properties: { found: { type: "object" } } } }