Skip to content

Latest commit

 

History

History
72 lines (62 loc) · 2.36 KB

README.md

File metadata and controls

72 lines (62 loc) · 2.36 KB

World Airport List

Airport data has been taken from OurAirports and converted to json.

for bugs and updates please open an issue or report to OurAirports

Airport JSON Structure

{
    "id": 317457, // OutAirports ID
    "ident": "LTFM", // ICAO Code or IDENT
    "type": "large_airport",
    "name": "İstanbul Airport",
    "latitude": 41.261297,
    "longitude": 28.741951,
    "elevation": 325, // ft
    "continent": "EU",
    "iso_country": "TR",
    "iso_region": "TR-34",
    "municipality": "Arnavutköy, Istanbul",
    "scheduled_service": "yes",
    "gps_code": "LTFM",
    "iata_code": "IST",
    "local_code": "",
    "home_link": "http://www.igairport.com/en",
    "wikipedia_link": "https://en.wikipedia.org/wiki/Istanbul_Airport",
    "keywords": ""
}

Airport Frequency JSON Structure

{
    "id": 333707,
    "airport_ref": 317457,
    "airport_ident": "LTFM",
    "type": "Clearance", // A code for the frequency type. This isn't (currently) a controlled vocabulary, but probably will be soon. Some common values are "TWR" (tower), "ATF" or "CTAF" (common traffic frequency), "GND" (ground control), "RMP" (ramp control), "ATIS" (automated weather), "RCO" (remote radio outlet), "ARR" (arrivals), "DEP" (departures), "UNICOM" (monitored ground station), and "RDO" (a flight-service station).
    "description": "Istanbul Clearance Delivery",
    "frequency": 121.7
}

Runway JSON Structure

{
    "id": 329986,
    "airport_ref": 317457,
    "airport_ident": "LTFM",
    "length": 12303, // ft
    "width": 147, // ft
    "surface": "ASP", // Code for the runway surface type. This is not yet a controlled vocabulary, but probably will be soon. Some common values include "ASP" (asphalt), "TURF" (turf), "CON" (concrete), "GRS" (grass), "GRE" (gravel), "WATER" (water), and "UNK" (unknown).
    "lighted": true,
    "closed": false,
    "le_ident": "16L",
    "le_latitude": 41.29859924316406,
    "le_longitude": 28.709199905395508,
    "le_elevation": 218, // ft
    "le_heading": 174, // deg
    "le_displaced_threshold": 0, // ft
    "he_ident": "34R",
    "he_latitude": 41.26490020751953,
    "he_longitude": 28.70989990234375,
    "he_elevation": 325, // ft
    "he_heading": 354, // deg
    "he_displaced_threshold": 0 // ft
}