action ljaero_asp_by_route_us_v1_airspace_route_query_post { label: "Retrieve all requested types of airspace traversed by route." description: "Retrieve selected types of airspace traversed by 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* asptypes: list of one or more airspace types you wish to retrieve. Allowed values are 'CAS', 'SUA', 'MAA', and 'MTR'.\n\nSuccessful requests return a list of GeoJSON FeatureCollections, one for each Airspace type indicated in the request. Within each feature collection, there will be a separate Feature for each Airspace instance found. All Features will include a property indicating the *airspace_type*. Additional properties for each *airspace_type* are as follows:\n* CAS (Controlled Airspace)\n - *name*\n - *cas_class*: B, C, D, or E2\n - *floor*: integer value in ft MSL\n - *ceiling*: integer value in ft MSL\n - *lannc*: true/false indicating whether or not authorization for this airspace may be obtained via LAANC\n* SUA (Special Use Airspace)\n - *name*\n - *sua_type*: AA = Alert Area, MOA = Military Operations Area, NSA = National Security Area, PA = Prohibited Area, RA = Restricted Area, WA = Warning Area\n - *floor*: lower limit of the airspace\n - *floor_uom*: unit of measure used for the numeric floor value: FT (feet) or FL (flight level)\n - *floor_ref*: reference level used for the numeric floor value: AGL, MSL, or STD (standard atmosphere, used for flight level values)\n - *ceiling*: upper limit of the airspace\n - *ceiling_uom*: unit of measure used for the numeric floor value: FT (feet) or FL (flight level)\n - *ceiling_ref*: reference level used for the numeric ceiling value: AGL, MSL, or STD (standard atmosphere, used for flight level values)\n* MAA (Miscellaneous Activity Area)\n - *name*\n - *maa_type*: one of the following - ULTRALIGHT, PARACHUTE JUMP AREA, AEROBATIC PRACTICE, GLIDER, HANG GLIDER, SPACE LAUNCH ACTIVITY\n - *use_times*: textual description of days/times when activity in the area should be expected\n* MTR (Military Training Route)\n - *name*\n - *use_times*: textual description of days/times when MTR is active/hot\n - *terrain_following*: boolean value indicating whether terrain following activity occurs on the route\n - *max_extent_nm*: maximum distance that aircraft can deviate from route centerline" provider: ljaero method: POST path: "/us/v1/airspace/route-query" encoding: json input: { type: "object" properties: { asptypes: { type: "array" items: { type: "string" } } route: { type: "object" } "x-api-key": { type: "string" } } required: ["asptypes", "route"] additionalProperties: false } output: { type: "object" required: ["found"] properties: { found: { type: "array" items: { type: "object" } } } } }