v1
latestOpenAPI 3.0.22026-07-132450182.6 KBAerodromes
Retrieve aerodromes located within given area.
Retrieve aerodromes located within given area. Request body parameters are:
- poly: GeoJSON Polygon 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.
post/us/v1/aerodromes/polygon-query
Headers
x-api-keystring
Request body
Example request
{
"poly": {
"type": "Polygon",
"coordinates": [
[
[
-122.338707447052,
47.62958028571895
],
[
-122.35679626464844,
47.61773556745509
],
[
-122.33343388885261,
47.61953540719045
],
[
-122.338707447052,
47.62958028571895
]
]
]
}
}Response
A GeoJSON FeatureCollection, one Feature for each aerodrome found.
Example response
{
"found": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.348709,
47.619571
]
},
"properties": {
"ident": "8WA9",
"name": "Broadcast House Helistop",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Keith Nealey - Manager",
"contact_phone": "206-728-7777"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.344721,
47.621668
]
},
"properties": {
"ident": "WN16",
"name": "Komo Tv",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Jeff Pace - Manager",
"contact_phone": "206-404-8000"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.342347,
47.621489
]
},
"properties": {
"ident": "WN01",
"name": "Seattle Private Number One",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Mark S. Hansen - Manager",
"contact_phone": "206-448-3863"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.338736,
47.628989
]
},
"properties": {
"ident": "W55",
"name": "Kenmore Air Harbor",
"facility_type": "PUBLIC SEAPLANE BASE",
"facility_status": "OPERATIONAL",
"contact_person": "Sarah Feller - Manager",
"contact_phone": "425-486-1257"
}
}
]
}
}