v1
latestOpenAPI 3.0.22026-07-132450182.6 KBAerodromes
Retrieve aerodromes found along a route.
Retrieve aerodromes found along a route. Request body parameters are:
- route: GeoJSON Linestring 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.
post/us/v1/aerodromes/route-query
Headers
x-api-keystring
Request body
Example request
{
"route": {
"type": "LineString",
"coordinates": [
[
-89.353316,
29.270685
],
[
-89.36921,
29.290526
],
[
-89.376006,
29.298966
]
]
}
}Response
A GeoJSON FeatureCollection, one Feature for each aerodrome found.
Example response
{
"found": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.353022,
29.258748
]
},
"properties": {
"ident": "11LA",
"name": "Tiger Pass",
"facility_type": "PRIVATE SEAPLANE BASE",
"facility_status": "OPERATIONAL",
"contact_person": "Mickey Bull - Manager",
"contact_phone": "504-465-3220"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.355051,
29.259386
]
},
"properties": {
"ident": "8LA4",
"name": "Conoco Inc Venice",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "H. A. Niehaus - Manager",
"contact_phone": "504-368-3000"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.367829,
29.287441
]
},
"properties": {
"ident": "LS52",
"name": "Era Helicopters Venice Base",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Unknown",
"contact_phone": "Unknown"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.36394,
29.286052
]
},
"properties": {
"ident": "LA47",
"name": "Marathon Venice",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "R. J. Barnwell - Manager",
"contact_phone": "318-233-8240"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.371108,
29.295554
]
},
"properties": {
"ident": "45LA",
"name": "Bristow Us Llc",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Robert Old - Manager",
"contact_phone": "(985) 288-1255"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.355831,
29.271109
]
},
"properties": {
"ident": "30LA",
"name": "Venice Base Heliport & Spb",
"facility_type": "PRIVATE SEAPLANE BASE",
"facility_status": "OPERATIONAL",
"contact_person": "Wayland Lewis - Manager",
"contact_phone": "504-534-7031"
}
}
]
}
}