v1
latestOpenAPI 3.0.22026-07-132450182.6 KBAerodromes
Retrieve aerodromes within given distance of location.
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.
post/us/v1/aerodromes/distance-query
Headers
x-api-keystring
Request body
Example request
{
"longitude": -82.97,
"latitude": 39.94,
"distance": 5000
}Response
A GeoJSON FeatureCollection, one Feature for each aerodrome found.
Example response
{
"found": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.997126,
39.95534
]
},
"properties": {
"ident": "5OH8",
"name": "Joseph Skilken & Company",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Steve Skilken - Manager",
"contact_phone": "614-221-4547"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.962402,
39.97034
]
},
"properties": {
"ident": "2OI6",
"name": "University Hospital East",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Ron Marstiller - Manager",
"contact_phone": "614-257-2136"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.980154,
39.952685
]
},
"properties": {
"ident": "OI95",
"name": "Nationwide Children'S Hospital",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Chip Henderson - Manager",
"contact_phone": "614-722-6226"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.999348,
39.962562
]
},
"properties": {
"ident": "OH53",
"name": "Ohio Bldg Authority",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Das Facility Manager - Manager",
"contact_phone": "614-995-7751"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.991474,
39.960582
]
},
"properties": {
"ident": "OH01",
"name": "Grant Medical Center",
"facility_type": "PRIVATE HELIPORT",
"facility_status": "OPERATIONAL",
"contact_person": "Gregory D Maney - Manager",
"contact_phone": "614-566-9000"
}
}
]
}
}