Retrieve aerodromes found along a route. Request body parameters are:
* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.
Successful requests return a GeoJSON FeatureCollection, with a separate Feature for each
Aerodrome found. All Features will include properties for the facility name, ident,
type, and operational status.
Retrieve aerodromes located within given area. Request body parameters are:
* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.
Successful requests return a GeoJSON FeatureCollection, with a separate Feature for each
Aerodrome found. All Features will include properties for the facility name, ident,
type, and operational status.
Retrieve aerodromes within given distance of a point. Request body parameters are:
* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
* distance: distance in meters (max allowed value is 25000)
Successful requests return a GeoJSON FeatureCollection, with a separate Feature for each
Aerodrome found. All Features will include properties for the facility name, ident,
type, and operational status.
Retrieve selected types of airspace existing within given distance from a point. Request body parameters are:
* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
* distance: distance in meters (max allowed value is 25000)
* asptypes: list of one or more airspace types you wish to retrieve. Allowed values are 'CAS', 'SUA', 'MAA', and 'MTR'.
Successful 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:
* CAS (Controlled Airspace)
- *name*
- *cas_class*: B, C, D, or E2
- *floor*: integer value in ft MSL
- *ceiling*: integer value in ft MSL
- *lannc*: true/false indicating whether or not authorization for this airspace may be obtained via LAANC
* SUA (Special Use Airspace)
- *name*
- *sua_type*: AA = Alert Area, MOA = Military Operations Area, NSA = National Security Area, PA = Prohibited Area, RA = Restricted Area, WA = Warning Area
- *floor*: lower limit of the airspace
- *floor_uom*: unit of measure used for the numeric floor value: FT (feet) or FL (flight level)
- *floor_ref*: reference level used for the numeric floor value: AGL, MSL, or STD (standard atmosphere, used for flight level values)
- *ceiling*: upper limit of the airspace
- *ceiling_uom*: unit of measure used for the numeric floor value: FT (feet) or FL (flight level)
- *ceiling_ref*: reference level used for the numeric ceiling value: AGL, MSL, or STD (standard atmosphere, used for flight level values)
* MAA (Miscellaneous Activity Area)
- *name*
- *maa_type*: one of the following - ULTRALIGHT, PARACHUTE JUMP AREA, AEROBATIC PRACTICE, GLIDER, HANG GLIDER, SPACE LAUNCH ACTIVITY
- *use_times*: textual description of days/times when activity in the area should be expected
* MTR (Military Training Route)
- *name*
- *use_times*: textual description of days/times when MTR is active/hot
- *terrain_following*: boolean value indicating whether terrain following activity occurs on the route
- *max_extent_nm*: maximum distance that aircraft can deviate from route centerline
Retrieve selected types of airspace located within given area. Request body parameters are:
* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.
* asptypes: list of one or more airspace types you wish to retrieve. Allowed values are 'CAS', 'SUA', 'MAA', and 'MTR'.
Successful 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:
* CAS (Controlled Airspace)
- *name*
- *cas_class*: B, C, D, or E2
- *floor*: integer value in ft MSL
- *ceiling*: integer value in ft MSL
- *lannc*: true/false indicating whether or not authorization for this airspace may be obtained via LAANC
* SUA (Special Use Airspace)
- *name*
- *sua_type*: AA = Alert Area, MOA = Military Operations Area, NSA = National Security Area, PA = Prohibited Area, RA = Restricted Area, WA = Warning Area
- *floor*: lower limit of the airspace
- *floor_uom*: unit of measure used for the numeric floor value: FT (feet) or FL (flight level)
- *floor_ref*: reference level used for the numeric floor value: AGL, MSL, or STD (standard atmosphere, used for flight level values)
- *ceiling*: upper limit of the airspace
- *ceiling_uom*: unit of measure used for the numeric floor value: FT (feet) or FL (flight level)
- *ceiling_ref*: reference level used for the numeric ceiling value: AGL, MSL, or STD (standard atmosphere, used for flight level values)
* MAA (Miscellaneous Activity Area)
- *name*
- *maa_type*: one of the following - ULTRALIGHT, PARACHUTE JUMP AREA, AEROBATIC PRACTICE, GLIDER, HANG GLIDER, SPACE LAUNCH ACTIVITY
- *use_times*: textual description of days/times when activity in the area should be expected
* MTR (Military Training Route)
- *name*
- *use_times*: textual description of days/times when MTR is active/hot
- *terrain_following*: boolean value indicating whether terrain following activity occurs on the route
- *max_extent_nm*: maximum distance that aircraft can deviate from route centerline
Retrieve selected types of airspace traversed by route. Request body parameters are:
* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.
* asptypes: list of one or more airspace types you wish to retrieve. Allowed values are 'CAS', 'SUA', 'MAA', and 'MTR'.
Successful 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:
* CAS (Controlled Airspace)
- *name*
- *cas_class*: B, C, D, or E2
- *floor*: integer value in ft MSL
- *ceiling*: integer value in ft MSL
- *lannc*: true/false indicating whether or not authorization for this airspace may be obtained via LAANC
* SUA (Special Use Airspace)
- *name*
- *sua_type*: AA = Alert Area, MOA = Military Operations Area, NSA = National Security Area, PA = Prohibited Area, RA = Restricted Area, WA = Warning Area
- *floor*: lower limit of the airspace
- *floor_uom*: unit of measure used for the numeric floor value: FT (feet) or FL (flight level)
- *floor_ref*: reference level used for the numeric floor value: AGL, MSL, or STD (standard atmosphere, used for flight level values)
- *ceiling*: upper limit of the airspace
- *ceiling_uom*: unit of measure used for the numeric floor value: FT (feet) or FL (flight level)
- *ceiling_ref*: reference level used for the numeric ceiling value: AGL, MSL, or STD (standard atmosphere, used for flight level values)
* MAA (Miscellaneous Activity Area)
- *name*
- *maa_type*: one of the following - ULTRALIGHT, PARACHUTE JUMP AREA, AEROBATIC PRACTICE, GLIDER, HANG GLIDER, SPACE LAUNCH ACTIVITY
- *use_times*: textual description of days/times when activity in the area should be expected
* MTR (Military Training Route)
- *name*
- *use_times*: textual description of days/times when MTR is active/hot
- *terrain_following*: boolean value indicating whether terrain following activity occurs on the route
- *max_extent_nm*: maximum distance that aircraft can deviate from route centerline
Retrieve venues existing within given distance from a point. Request body parameters are:
* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
* distance: distance in meters (max allowed value is 25000)
Retrieve all restricted public venues located within given area. Request body parameters are:
* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.
Retrieve all restricted public venues intersected by route. Request body parameters are:
* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.
Retrieve special security areas existing within given distance from a point. Request body parameters are:
* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
* distance: distance in meters (max allowed value is 25000)
Retrieve all special security areas located within given area. Request body parameters are:
* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.
Retrieve all special security areas intersected by route. Request body parameters are:
* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.
Retrieve Flight Restrictions applicable along your route. Request body parameters are:
* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.
Retrieve Flight Restrictions located within given area. Request body parameters are:
* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.
Retrieve Flight Restrictions applicable within given distance of a point. Request body parameters are:
* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
* distance: distance in meters (max allowed value is 25000)
Retrieve forecast values along route for requested weather elements and time period. Request body parameters are:
* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.
* wxtypes: list of one or more weather forecast elements you wish to retrieve. Allowed values are "CIG", "DEWPT", "SKY", "TEMP", "VIS", "WINDDIR", "WINDGUST", "WINDSPEED".
* hours: number of hourly forecasts to return (1-24). For current hour only you should enter value of 1. To also retrieve values for each of the next n hours, enter n.
The response will consist of a GeoJSON FeatureCollection with one Feature for each forecast location found within requested area,
properties of which will include an ordered list of forecast values for each requested weather element, for each requested hour. Units for each element are as follows:
* CIG: meters AGL
* DEWPT: degrees Celsius
* SKY: % cloud cover
* TEMP: degrees Celsius
* VIS: meters
* WINDDIR: degrees true
* WINDGUST: meters/sec
* WINDSPEED: meters/sec
Retrieve forecast values for selected weather elements and time period. Request body parameters are:
* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
* distance: distance in meters (max allowed value is 25000)
* wxtypes: list of one or more weather forecast elements you wish to retrieve. Allowed values are "CIG", "DEWPT", "SKY", "TEMP", "VIS", "WINDDIR", "WINDGUST", "WINDSPEED".
* hours: number of hourly forecasts to return (1-24). For current hour only you should enter value of 1. To also retrieve values for each of the next n hours, enter n.
The response will consist of a GeoJSON FeatureCollection with one Feature for each forecast location found within requested area,
properties of which will include an ordered list of forecast values for each requested weather element, for each requested hour. Units for each element are as follows:
* CIG: meters AGL
* DEWPT: degrees Celsius
* SKY: % cloud cover
* TEMP: degrees Celsius
* VIS: meters
* WINDDIR: degrees true
* WINDGUST: meters/sec
* WINDSPEED: meters/sec
Retrieve forecast values located within given area for requested weather elements and time period. Request body parameters are:
* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.
* wxtypes: list of one or more weather forecast elements you wish to retrieve. Allowed values are "CIG", "DEWPT", "SKY", "TEMP", "VIS", "WINDDIR", "WINDGUST", "WINDSPEED".
* hours: number of hourly forecasts to return (1-24). For current hour only you should enter value of 1. To also retrieve values for each of the next n hours, enter n.
The response will consist of a GeoJSON FeatureCollection with one Feature for each forecast location found within requested area,
properties of which will include an ordered list of forecast values for each requested weather element, for each requested hour. Units for each element are as follows:
* CIG: meters AGL
* DEWPT: degrees Celsius
* SKY: % cloud cover
* TEMP: degrees Celsius
* VIS: meters
* WINDDIR: degrees true
* WINDGUST: meters/sec
* WINDSPEED: meters/sec
Retrieve obstacles found along a route. Request body parameters are:
* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.
Retrieve obstacles located within given area. Request body parameters are:
* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.
Retrieve obstacles within given distance of a point. Request body parameters are:
* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
* distance: distance in meters (max allowed value is 25000)
Retrieve UAS Operating Areas (UOAs) found along your route. Request body parameters are:
* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.
Retrieve UAS Operating Areas (UOAs) found within given area. Request body parameters are:
* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.
Retrieve UAS Operating Areas (UOAs) found within given distance of a point. Request body parameters are:
* latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
* longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
* distance: distance in meters (max allowed value is 25000)