action ljaero_aerodromes_by_distance_us_v1_aerodromes_distance_query_post { label: "Retrieve aerodromes within given distance of location." description: "Retrieve aerodromes within given distance of a point. Request body parameters are:\n* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees\n* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees\n* distance: distance in meters (max allowed value is 25000)\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/distance-query" encoding: json input: { type: "object" properties: { distance: { type: "object" } latitude: { type: "object" } longitude: { type: "object" } "x-api-key": { type: "string" } } required: ["distance", "latitude", "longitude"] additionalProperties: false } output: { type: "object" required: ["found"] properties: { found: { type: "object" } } } }