action ljaero_aerodromes_by_poly_us_v1_aerodromes_polygon_query_post { label: "Retrieve aerodromes located within given area." description: "Retrieve aerodromes located within given area. Request body parameters are:\n* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.\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/polygon-query" encoding: json input: { type: "object" properties: { poly: { type: "object" } "x-api-key": { type: "string" } } required: ["poly"] additionalProperties: false } output: { type: "object" required: ["found"] properties: { found: { type: "object" } } } }