Created
December 2, 2024 17:21
-
-
Save reasat-rafio/e4d3bbf68af2d4ce74dd7f83c7944574 to your computer and use it in GitHub Desktop.
This dataset contains essential airport information, including fields such as name, iso_country, iso_region, and iata_code. It has been filtered from a larger dataset for use in flight-related applications, providing key details for global airport identification and location.
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const airports = [ | |
| { | |
| name: 'Utirik Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-UTI', | |
| iata_code: 'UTK', | |
| municipality: 'Utirik Island' | |
| }, | |
| { | |
| name: 'Ocean Reef Club Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'OCA', | |
| municipality: 'Key Largo' | |
| }, | |
| { | |
| name: 'Cuddihy Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CUX', | |
| municipality: 'Corpus Christi' | |
| }, | |
| { | |
| name: 'Crested Butte Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'CSE', | |
| municipality: 'Crested Butte' | |
| }, | |
| { | |
| name: 'Columbus Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'CUS', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'LBJ Ranch Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'JCY', | |
| municipality: 'Stonewall' | |
| }, | |
| { | |
| name: 'Loring Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'WLR', | |
| municipality: 'Loring' | |
| }, | |
| { | |
| name: 'Nunapitchuk Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'NUP', | |
| municipality: 'Nunapitchuk' | |
| }, | |
| { | |
| name: 'Port Alice Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'PTC', | |
| municipality: 'Port Alice' | |
| }, | |
| { | |
| name: 'Icy Bay Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'ICY', | |
| municipality: 'Icy Bay' | |
| }, | |
| { | |
| name: 'Port Protection Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'PPV', | |
| municipality: 'Port Protection' | |
| }, | |
| { | |
| name: 'Kalakaket Creek AS Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KKK', | |
| municipality: 'Kalakaket Creek' | |
| }, | |
| { | |
| name: 'Dunsmuir Muni-Mott Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MHS', | |
| municipality: 'Dunsmuir' | |
| }, | |
| { | |
| name: 'Chase Field Industrial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'NIR', | |
| municipality: 'Beeville' | |
| }, | |
| { | |
| name: 'Grand Canyon Bar Ten Airstrip', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'GCT', | |
| municipality: 'Littlefield' | |
| }, | |
| { | |
| name: 'Ellamar Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'ELW', | |
| municipality: 'Ellamar' | |
| }, | |
| { | |
| name: 'Lime Village Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'LVD', | |
| municipality: 'Lime Village' | |
| }, | |
| { | |
| name: 'Hog River Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'HGZ', | |
| municipality: 'Hogatza' | |
| }, | |
| { | |
| name: 'Ed-Air Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'OTN', | |
| municipality: 'Oaktown' | |
| }, | |
| { | |
| name: 'Telida Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'TLF', | |
| municipality: 'Telida' | |
| }, | |
| { | |
| name: 'Eagle Air Park', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BZT', | |
| municipality: 'Brazoria' | |
| }, | |
| { | |
| name: 'Entrance Island Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'HBH', | |
| municipality: 'Entrance Island' | |
| }, | |
| { | |
| name: 'False Island Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'FAK', | |
| municipality: 'False Island' | |
| }, | |
| { | |
| name: 'Blakely Island Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'BYW', | |
| municipality: 'Blakely Island' | |
| }, | |
| { | |
| name: 'Drift River Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'DRF', | |
| municipality: 'Kenai' | |
| }, | |
| { | |
| name: 'Rinkenberger Restricted Landing Area', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'BDF', | |
| municipality: 'Bradford' | |
| }, | |
| { | |
| name: 'Tetlin Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'TEH', | |
| municipality: 'Tetlin' | |
| }, | |
| { | |
| name: 'Roy Otten Memorial Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'VRS', | |
| municipality: 'Versailles' | |
| }, | |
| { | |
| name: 'Golden Horn Lodge Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'GDH', | |
| municipality: 'Golden Horn Lodge' | |
| }, | |
| { | |
| name: 'Atmautluak Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'ATT', | |
| municipality: 'Atmautluak' | |
| }, | |
| { | |
| name: 'Livengood Camp Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'LIV', | |
| municipality: 'Livengood' | |
| }, | |
| { | |
| name: 'Pedro Bay Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'PDB', | |
| municipality: 'Pedro Bay' | |
| }, | |
| { | |
| name: 'Ouzinkie Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KOZ', | |
| municipality: 'Ouzinkie' | |
| }, | |
| { | |
| name: 'Tununak Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'TNK', | |
| municipality: 'Tununak' | |
| }, | |
| { | |
| name: 'Hyder Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'WHD', | |
| municipality: 'Hyder' | |
| }, | |
| { | |
| name: 'Minto Al Wright Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'MNT', | |
| municipality: 'Minto' | |
| }, | |
| { | |
| name: 'Tokeen Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'TKI', | |
| municipality: 'Tokeen' | |
| }, | |
| { | |
| name: 'Aleknagik / New Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'WKK', | |
| municipality: 'Aleknagik' | |
| }, | |
| { | |
| name: 'Ketchikan Harbor Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'WFB', | |
| municipality: 'Ketchikan' | |
| }, | |
| { | |
| name: 'Rollang Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'RFK', | |
| municipality: 'Rolling Fork' | |
| }, | |
| { | |
| name: 'Naknek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'NNK', | |
| municipality: 'Naknek' | |
| }, | |
| { | |
| name: 'Lake Brooks Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'BKF', | |
| municipality: 'Katmai National Park' | |
| }, | |
| { | |
| name: 'Southern Seaplane Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'BCS', | |
| municipality: 'Belle Chasse' | |
| }, | |
| { | |
| name: 'Minute Man Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'MMN', | |
| municipality: 'Stow' | |
| }, | |
| { | |
| name: 'Catalina Air-Sea Terminal Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SPQ', | |
| municipality: 'San Pedro' | |
| }, | |
| { | |
| name: 'East 34th Street Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'TSS', | |
| municipality: 'New York' | |
| }, | |
| { | |
| name: 'New York Skyports Inc Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'NYS', | |
| municipality: 'New York' | |
| }, | |
| { | |
| name: 'Earl Henry Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'BWL', | |
| municipality: 'Blackwell' | |
| }, | |
| { | |
| name: 'Yes Bay Lodge Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'WYB', | |
| municipality: 'Yes Bay' | |
| }, | |
| { | |
| name: 'Center Island Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'CWS', | |
| municipality: 'Center Island' | |
| }, | |
| { | |
| name: 'Tatitlek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'TEK', | |
| municipality: 'Tatitlek' | |
| }, | |
| { | |
| name: 'Pine Island Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'DUF', | |
| municipality: 'Corolla' | |
| }, | |
| { | |
| name: 'Stuart Island Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'SSW', | |
| municipality: 'Friday Harbor' | |
| }, | |
| { | |
| name: 'Fort Bragg Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'FOB', | |
| municipality: 'Fort Bragg' | |
| }, | |
| { | |
| name: 'Port of Poulsbo Marina Moorage Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'PUL', | |
| municipality: 'Poulsbo' | |
| }, | |
| { | |
| name: 'Century City Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CCD', | |
| municipality: 'Los Angeles' | |
| }, | |
| { | |
| name: 'Meyers Chuck Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'WMK', | |
| municipality: 'Meyers Chuck' | |
| }, | |
| { | |
| name: 'Maxson Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'AXB', | |
| municipality: 'Alexandria Bay' | |
| }, | |
| { | |
| name: 'Reese Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'REE', | |
| municipality: 'Lubbock' | |
| }, | |
| { | |
| name: 'Waldron Airstrip', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'WDN', | |
| municipality: 'Eastsound' | |
| }, | |
| { | |
| name: 'Whale Pass Seaplane Float Harbor Facility', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'WWP', | |
| municipality: 'Whale Pass' | |
| }, | |
| { | |
| name: 'Chuathbaluk Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CHU', | |
| municipality: 'Chuathbaluk' | |
| }, | |
| { | |
| name: 'Ugashik Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'UGS', | |
| municipality: 'Ugashik' | |
| }, | |
| { | |
| name: 'Recreation and Conference Center Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'JID', | |
| municipality: 'City of Industry' | |
| }, | |
| { | |
| name: 'Philadelphia Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'PSQ', | |
| municipality: 'Essington' | |
| }, | |
| { | |
| name: 'Levelock Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KLL', | |
| municipality: 'Levelock' | |
| }, | |
| { | |
| name: 'Saginaw Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'SGW', | |
| municipality: 'Saginaw Bay' | |
| }, | |
| { | |
| name: 'Tuntutuliak Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'WTL', | |
| municipality: 'Tuntutuliak' | |
| }, | |
| { | |
| name: 'Twin Hills Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'TWA', | |
| municipality: 'Twin Hills' | |
| }, | |
| { | |
| name: 'Chignik Lake Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KCQ', | |
| municipality: 'Chignik Lake' | |
| }, | |
| { | |
| name: 'Adado Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-GA', | |
| iata_code: 'AAD', | |
| municipality: 'Adado' | |
| }, | |
| { | |
| name: 'Atkamba Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'ABP', | |
| municipality: 'Atkamba Mission' | |
| }, | |
| { | |
| name: 'Arica Airport', | |
| iso_country: 'CO', | |
| country_name: 'Colombia', | |
| iso_region: 'CO-AMA', | |
| iata_code: 'ACM', | |
| municipality: 'Arica' | |
| }, | |
| { | |
| name: 'Andakombe Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EHG', | |
| iata_code: 'ADC', | |
| municipality: 'Andekombe' | |
| }, | |
| { | |
| name: 'El Daein Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-DE', | |
| iata_code: 'ADV', | |
| municipality: 'El Daein' | |
| }, | |
| { | |
| name: 'Jebel Ali Seaplane Base', | |
| iso_country: 'AE', | |
| country_name: 'United Arab Emirates', | |
| iso_region: 'AE-DU', | |
| iata_code: 'DJH', | |
| municipality: 'Jebel Ali' | |
| }, | |
| { | |
| name: 'Adareil Airport', | |
| iso_country: 'SS', | |
| country_name: 'South Sudan', | |
| iso_region: 'SS-23', | |
| iata_code: 'AEE', | |
| municipality: 'Adar' | |
| }, | |
| { | |
| name: 'Aseki Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'AEK', | |
| municipality: 'Aseki' | |
| }, | |
| { | |
| name: 'Ar Horqin Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-15', | |
| iata_code: 'AEQ', | |
| municipality: 'Chifeng' | |
| }, | |
| { | |
| name: '"Ghost" International Airport', | |
| iso_country: 'AF', | |
| country_name: 'Afghanistan', | |
| iso_region: 'AF-KHO', | |
| iata_code: 'KHT', | |
| municipality: 'Khost' | |
| }, | |
| { | |
| name: 'Or\u016bzg\u0101n Airport', | |
| iso_country: 'AF', | |
| country_name: 'Afghanistan', | |
| iso_region: 'AF-URU', | |
| iata_code: 'URZ', | |
| municipality: 'Or\u016bzg\u0101n' | |
| }, | |
| { | |
| name: 'Salerno Airport', | |
| iso_country: 'AF', | |
| country_name: 'Afghanistan', | |
| iso_region: 'AF-KHO', | |
| iata_code: 'OLR', | |
| municipality: 'Khost' | |
| }, | |
| { | |
| name: 'Kondavattavana Tank Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-5', | |
| iata_code: 'AFK', | |
| municipality: 'Ampara' | |
| }, | |
| { | |
| name: 'Afore Airstrip', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'AFR', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Afutara Aerodrome', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-ML', | |
| iata_code: 'AFT', | |
| municipality: 'Bila' | |
| }, | |
| { | |
| name: 'Ulawa Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-MK', | |
| iata_code: 'RNA', | |
| municipality: 'Arona' | |
| }, | |
| { | |
| name: 'Uru Harbour Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-ML', | |
| iata_code: 'ATD', | |
| municipality: 'Atoifi' | |
| }, | |
| { | |
| name: 'Barakoma Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'VEV', | |
| municipality: 'Barakoma' | |
| }, | |
| { | |
| name: 'Geva Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'GEF', | |
| municipality: 'Liangia' | |
| }, | |
| { | |
| name: 'Angoram Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'AGG', | |
| municipality: 'Angoram' | |
| }, | |
| { | |
| name: "Gwaunaru'u Airport", | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-ML', | |
| iata_code: 'AKS', | |
| municipality: 'Auki' | |
| }, | |
| { | |
| name: 'Bellona/Anua Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-RB', | |
| iata_code: 'BNY', | |
| municipality: 'Anua' | |
| }, | |
| { | |
| name: 'Choiseul Bay Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-CH', | |
| iata_code: 'CHY', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Ballalae Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'BAS', | |
| municipality: 'Ballalae' | |
| }, | |
| { | |
| name: 'Fera/Maringe Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-IS', | |
| iata_code: 'FRE', | |
| municipality: 'Fera Island' | |
| }, | |
| { | |
| name: 'Honiara International Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-GU', | |
| iata_code: 'HIR', | |
| municipality: 'Honiara' | |
| }, | |
| { | |
| name: 'Babanakira Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-GU', | |
| iata_code: 'MBU', | |
| municipality: 'Mbambanakira' | |
| }, | |
| { | |
| name: 'Avu Avu Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-GU', | |
| iata_code: 'AVU', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Ngorangora Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-MK', | |
| iata_code: 'IRA', | |
| municipality: 'Kirakira' | |
| }, | |
| { | |
| name: 'Santa Cruz/Graciosa Bay/Luova Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-TE', | |
| iata_code: 'SCZ', | |
| municipality: 'Santa Cruz/Graciosa Bay/Luova' | |
| }, | |
| { | |
| name: 'Munda Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'MUA', | |
| municipality: 'Munda' | |
| }, | |
| { | |
| name: 'Nusatupe Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'GZO', | |
| municipality: 'Gizo' | |
| }, | |
| { | |
| name: 'Mono Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'MNY', | |
| municipality: 'Stirling Island' | |
| }, | |
| { | |
| name: 'Parasi Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-ML', | |
| iata_code: 'PRS', | |
| municipality: 'Parasi' | |
| }, | |
| { | |
| name: 'Rennell/Tingoa Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-RB', | |
| iata_code: 'RNL', | |
| municipality: 'Rennell Island' | |
| }, | |
| { | |
| name: 'Sege Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'EGM', | |
| municipality: 'Sege' | |
| }, | |
| { | |
| name: 'Santa Ana Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-MK', | |
| iata_code: 'NNB', | |
| municipality: 'Santa Ana Island' | |
| }, | |
| { | |
| name: 'Marau Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-GU', | |
| iata_code: 'RUS', | |
| municipality: 'Marau' | |
| }, | |
| { | |
| name: 'Suavanao Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-IS', | |
| iata_code: 'VAO', | |
| municipality: 'Suavanao' | |
| }, | |
| { | |
| name: 'Yandina Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-CE', | |
| iata_code: 'XYA', | |
| municipality: 'Yandina' | |
| }, | |
| { | |
| name: 'Kagua Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SHM', | |
| iata_code: 'AGK', | |
| municipality: 'Kagua' | |
| }, | |
| { | |
| name: 'Kaghau Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-CH', | |
| iata_code: 'KGE', | |
| municipality: 'Kagau Island' | |
| }, | |
| { | |
| name: 'Kukudu Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'KUE', | |
| municipality: 'Kolombangara Island' | |
| }, | |
| { | |
| name: 'Kwailabesi Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-ML', | |
| iata_code: 'KWS', | |
| municipality: 'Kwailabesi' | |
| }, | |
| { | |
| name: 'Wanigela Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'AGL', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Lomlom Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-TE', | |
| iata_code: 'LLM', | |
| municipality: 'Lomlom' | |
| }, | |
| { | |
| name: 'Nana Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-MK', | |
| iata_code: 'NAZ', | |
| municipality: 'Star Harbor' | |
| }, | |
| { | |
| name: 'Manaoba Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-ML', | |
| iata_code: 'MHM', | |
| municipality: 'Manaoba' | |
| }, | |
| { | |
| name: 'Gatokae Aerodrome', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'GTA', | |
| municipality: 'Gatokae' | |
| }, | |
| { | |
| name: 'Ringi Cove Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'RIN', | |
| municipality: 'Ringi Cove' | |
| }, | |
| { | |
| name: 'Ramata Airport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'RBV', | |
| municipality: 'Ramata' | |
| }, | |
| { | |
| name: 'Tulaghi Heliport', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-CE', | |
| iata_code: 'TLG', | |
| municipality: 'Tulaghi Island' | |
| }, | |
| { | |
| name: 'Argyle Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'AGY', | |
| municipality: 'Argyle Downs' | |
| }, | |
| { | |
| name: 'Hongyuan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-51', | |
| iata_code: 'AHJ', | |
| municipality: 'Ngawa (Hongyuan)' | |
| }, | |
| { | |
| name: 'Ambatolhy Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'AHY', | |
| municipality: 'Ambatolahy' | |
| }, | |
| { | |
| name: 'Aiome Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'AIE', | |
| municipality: 'Aiome' | |
| }, | |
| { | |
| name: 'Aiambak Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'AIH', | |
| municipality: 'Aiambak' | |
| }, | |
| { | |
| name: 'Ailinglaplap Airok Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-ALL', | |
| iata_code: 'AIC', | |
| municipality: 'Bigatyelang Island' | |
| }, | |
| { | |
| name: 'Chena Hot Springs Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CEX', | |
| municipality: 'Chena Hot Springs' | |
| }, | |
| { | |
| name: 'Solomon State Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'SOL', | |
| municipality: 'Solomon' | |
| }, | |
| { | |
| name: 'Herendeen Bay Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'HED', | |
| municipality: 'Herendeen Bay' | |
| }, | |
| { | |
| name: 'Taylor Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'TWE', | |
| municipality: 'Taylor' | |
| }, | |
| { | |
| name: 'Tikchik Lodge Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KTH', | |
| municipality: 'Tikchik' | |
| }, | |
| { | |
| name: 'Naukati Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'NKI', | |
| municipality: 'Tuxekan Island' | |
| }, | |
| { | |
| name: 'Point Lonely Short Range Radar Site Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'LNI', | |
| municipality: 'Point Lonely' | |
| }, | |
| { | |
| name: 'Candle 2 Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CDL', | |
| municipality: 'Candle' | |
| }, | |
| { | |
| name: 'Amook Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'AOS', | |
| municipality: 'Amook Bay' | |
| }, | |
| { | |
| name: 'Boswell Bay Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'BSW', | |
| municipality: 'Boswell Bay' | |
| }, | |
| { | |
| name: 'Zakuoma Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-SA', | |
| iata_code: 'AKM', | |
| municipality: 'ZaKouma' | |
| }, | |
| { | |
| name: 'Alitak Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'ALZ', | |
| municipality: 'Lazy Bay' | |
| }, | |
| { | |
| name: 'Mar de Cort\u00e9s International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SON', | |
| iata_code: 'PPE', | |
| municipality: 'Puerto Pe\u00f1asco' | |
| }, | |
| { | |
| name: 'Alto Molocue Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-Q', | |
| iata_code: 'AME', | |
| municipality: 'Alto Molocue' | |
| }, | |
| { | |
| name: 'Ama Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'AMF', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Amanab Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'AMU', | |
| municipality: 'Amanab' | |
| }, | |
| { | |
| name: 'Ambatomainty Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'AMY', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Nauru International Airport', | |
| iso_country: 'NR', | |
| country_name: 'Nauru', | |
| iso_region: 'NR-14', | |
| iata_code: 'INU', | |
| municipality: 'Yaren District' | |
| }, | |
| { | |
| name: 'Angus Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'ANZ', | |
| municipality: 'Angus Downs Station' | |
| }, | |
| { | |
| name: 'Catoca Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LSU', | |
| iata_code: 'CTV', | |
| municipality: 'Saurimo' | |
| }, | |
| { | |
| name: 'Andulo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-BIE', | |
| iata_code: 'ANL', | |
| municipality: 'Andulo' | |
| }, | |
| { | |
| name: 'Cangamba Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-MOX', | |
| iata_code: 'CNZ', | |
| municipality: 'Cangamba' | |
| }, | |
| { | |
| name: 'Dirico Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CCU', | |
| iata_code: 'DRC', | |
| municipality: 'Dirico' | |
| }, | |
| { | |
| name: 'Capanda Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-MAL', | |
| iata_code: 'KNP', | |
| municipality: 'Capanda' | |
| }, | |
| { | |
| name: "N'dalatando Airport", | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CNO', | |
| iata_code: 'NDF', | |
| municipality: "N'dalatando" | |
| }, | |
| { | |
| name: 'Annanberg Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'AOB', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Abou-De\u00efa Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-SA', | |
| iata_code: 'AOD', | |
| municipality: 'Abou-De\u00efa' | |
| }, | |
| { | |
| name: 'Asapa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'APP', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'April River Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'APR', | |
| municipality: 'April River' | |
| }, | |
| { | |
| name: 'Girdwood-Alyeska Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'AQY', | |
| municipality: 'Girdwood' | |
| }, | |
| { | |
| name: 'Bragado Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-B', | |
| iata_code: 'QRF', | |
| municipality: 'Bragado' | |
| }, | |
| { | |
| name: 'Caleta Olivia Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-Z', | |
| iata_code: 'CVI', | |
| municipality: 'Caleta Olivia' | |
| }, | |
| { | |
| name: 'Charata Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-H', | |
| iata_code: 'CNT', | |
| municipality: 'Charata' | |
| }, | |
| { | |
| name: 'General Villegas Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-B', | |
| iata_code: 'VGS', | |
| municipality: 'General Villegas' | |
| }, | |
| { | |
| name: 'Los Menucos Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-R', | |
| iata_code: 'LMD', | |
| municipality: 'Los Menucos' | |
| }, | |
| { | |
| name: 'Valcheta Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-R', | |
| iata_code: 'VCF', | |
| municipality: 'Valcheta' | |
| }, | |
| { | |
| name: 'Sunchales Aeroclub Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-S', | |
| iata_code: 'NCJ', | |
| municipality: 'Sunchales' | |
| }, | |
| { | |
| name: 'Carmen de Patagones Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-B', | |
| iata_code: 'CPG', | |
| municipality: 'Carmen de Patagones' | |
| }, | |
| { | |
| name: 'Termal Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-H', | |
| iata_code: 'PRQ', | |
| municipality: 'Presidencia Roque S\u00e1enz Pe\u00f1a' | |
| }, | |
| { | |
| name: 'Aragip Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'ARP', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Asirim Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'ASZ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Namatanai Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'ATN', | |
| municipality: 'Namatanai' | |
| }, | |
| { | |
| name: 'Aitape Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'ATP', | |
| municipality: 'Aitape' | |
| }, | |
| { | |
| name: 'Lady Elliot Island Airstrip', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'LYT', | |
| municipality: 'Lady Elliot Island' | |
| }, | |
| { | |
| name: 'Gruyere Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'GYZ', | |
| municipality: 'Cosmo Newbery' | |
| }, | |
| { | |
| name: 'Karara Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'KQR', | |
| municipality: 'Karara' | |
| }, | |
| { | |
| name: 'Alpha Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'ABH', | |
| municipality: 'Alpha' | |
| }, | |
| { | |
| name: 'Agnew Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'AGW', | |
| municipality: 'Agnew' | |
| }, | |
| { | |
| name: 'Alroy Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'AYD', | |
| municipality: 'Alroy Downs' | |
| }, | |
| { | |
| name: 'Baniyala Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'BYX', | |
| municipality: 'Baniyala' | |
| }, | |
| { | |
| name: 'Coolibah Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'COB', | |
| municipality: 'Coolibah' | |
| }, | |
| { | |
| name: 'Coorabie Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-SA', | |
| iata_code: 'CRJ', | |
| municipality: 'Coorabie' | |
| }, | |
| { | |
| name: 'Carlton Hill Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'CRY', | |
| municipality: 'Carlton Hill' | |
| }, | |
| { | |
| name: 'Cresswell Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'CSD', | |
| municipality: 'Cresswell Downs' | |
| }, | |
| { | |
| name: 'Diamantina Lakes Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'DYM', | |
| municipality: 'Diamantina Lakes' | |
| }, | |
| { | |
| name: 'Hayman Island Resort Seaplane Base', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'HIS', | |
| municipality: 'Hayman Island' | |
| }, | |
| { | |
| name: 'Helenvale Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'HLV', | |
| municipality: 'Helenvale' | |
| }, | |
| { | |
| name: 'Kimberley Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'KBD', | |
| municipality: 'Kimberley Downs' | |
| }, | |
| { | |
| name: 'Kulgera Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'KGR', | |
| municipality: 'Ghan' | |
| }, | |
| { | |
| name: 'Orchid Beach Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'OKB', | |
| municipality: 'Orchid Beach' | |
| }, | |
| { | |
| name: 'Peppimenarti Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'PEP', | |
| municipality: 'Peppimenarti' | |
| }, | |
| { | |
| name: 'Rockhampton Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'RDA', | |
| municipality: 'Rockhampton Downs' | |
| }, | |
| { | |
| name: 'Sturt Creek Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'SSK', | |
| municipality: 'Sturt Creek' | |
| }, | |
| { | |
| name: 'Shaw River Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'SWB', | |
| municipality: 'Shaw River' | |
| }, | |
| { | |
| name: 'Tom Price Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'TPR', | |
| municipality: 'Tom Price' | |
| }, | |
| { | |
| name: 'Torwood Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'TWP', | |
| municipality: 'Torwood' | |
| }, | |
| { | |
| name: 'Springvale Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'ZVG', | |
| municipality: 'Springvale' | |
| }, | |
| { | |
| name: 'Aua Island Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MRL', | |
| iata_code: 'AUI', | |
| municipality: 'Aua Island' | |
| }, | |
| { | |
| name: 'Ambunti Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'AUJ', | |
| municipality: 'Ambunti' | |
| }, | |
| { | |
| name: 'Agaun Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'AUP', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Aumo Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'AUV', | |
| municipality: 'Aumo' | |
| }, | |
| { | |
| name: 'Alowe Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-3', | |
| iata_code: 'AWE', | |
| municipality: 'Wonga Wongu\u00e9 Presidential Reserve' | |
| }, | |
| { | |
| name: 'Awar Airport (unusable)', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'AWR', | |
| municipality: 'Awar' | |
| }, | |
| { | |
| name: 'Alxa Left Banner Bayanhot Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-15', | |
| iata_code: 'AXF', | |
| municipality: 'Bayanhot' | |
| }, | |
| { | |
| name: 'Pantar Kabir Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-NT', | |
| iata_code: 'AXO', | |
| municipality: 'Kabir' | |
| }, | |
| { | |
| name: 'Kompiam Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EPW', | |
| iata_code: 'KPM', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Buka Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NSB', | |
| iata_code: 'BUA', | |
| municipality: 'Buka Island' | |
| }, | |
| { | |
| name: 'Biaru Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'BRP', | |
| municipality: 'Biaru' | |
| }, | |
| { | |
| name: 'Chimbu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPK', | |
| iata_code: 'CMU', | |
| municipality: 'Kundiawa' | |
| }, | |
| { | |
| name: 'Munduku Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'MDM', | |
| municipality: 'Munduku' | |
| }, | |
| { | |
| name: 'Kondobol Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'KPF', | |
| municipality: 'Kondobol' | |
| }, | |
| { | |
| name: 'Dinangat Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'DNU', | |
| municipality: 'Dinangat' | |
| }, | |
| { | |
| name: 'Doini Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'DOI', | |
| municipality: 'Castori Islets' | |
| }, | |
| { | |
| name: 'Daru Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'DAU', | |
| municipality: 'Daru' | |
| }, | |
| { | |
| name: 'Embessa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'EMS', | |
| municipality: 'Embessa' | |
| }, | |
| { | |
| name: 'Edwaki Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'XYR', | |
| municipality: 'Yellow River Mission' | |
| }, | |
| { | |
| name: 'Eliptamin Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'EPT', | |
| municipality: 'Eliptamin' | |
| }, | |
| { | |
| name: 'Engati Airstrip', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'EGA', | |
| municipality: 'Engati' | |
| }, | |
| { | |
| name: 'Emo River Airstrip', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'EMO', | |
| municipality: 'Emo Mission' | |
| }, | |
| { | |
| name: 'Erume Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'ERU', | |
| municipality: 'Erume' | |
| }, | |
| { | |
| name: 'Meselia Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'MFZ', | |
| municipality: 'Demgulu' | |
| }, | |
| { | |
| name: 'Feramin Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'FRQ', | |
| municipality: 'Feramin' | |
| }, | |
| { | |
| name: 'Frieda River Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'FAQ', | |
| municipality: 'Frieda River' | |
| }, | |
| { | |
| name: 'Fuma Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'FUM', | |
| municipality: 'Fuma' | |
| }, | |
| { | |
| name: 'Goroka Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EHG', | |
| iata_code: 'GKA', | |
| municipality: 'Goronka' | |
| }, | |
| { | |
| name: 'Guari Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'GUG', | |
| municipality: 'Guari' | |
| }, | |
| { | |
| name: 'Garasa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'GRL', | |
| municipality: 'Au' | |
| }, | |
| { | |
| name: 'Gurney Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'GUR', | |
| municipality: 'Gurney' | |
| }, | |
| { | |
| name: 'Gusap Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'GAP', | |
| municipality: 'Gusap' | |
| }, | |
| { | |
| name: 'Girua Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'PNP', | |
| municipality: 'Popondetta' | |
| }, | |
| { | |
| name: 'Gasuke Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'GBC', | |
| municipality: 'Gasuke' | |
| }, | |
| { | |
| name: 'Habi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'HBD', | |
| municipality: 'Habi' | |
| }, | |
| { | |
| name: 'Heiweni Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'HNI', | |
| municipality: 'Heiweni' | |
| }, | |
| { | |
| name: 'Honinabi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'HNN', | |
| municipality: 'Honinabi' | |
| }, | |
| { | |
| name: 'Hoskins Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'HKN', | |
| municipality: 'Kimbe' | |
| }, | |
| { | |
| name: 'Haivaro Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'HIT', | |
| municipality: 'Haivaro' | |
| }, | |
| { | |
| name: 'Imane Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'IMN', | |
| municipality: 'Imane' | |
| }, | |
| { | |
| name: 'Kungim Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'KGM', | |
| municipality: 'Kungim' | |
| }, | |
| { | |
| name: 'Imonda Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'IMD', | |
| municipality: 'Imonda' | |
| }, | |
| { | |
| name: 'Aropa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NSB', | |
| iata_code: 'KIE', | |
| municipality: 'Kieta' | |
| }, | |
| { | |
| name: 'Ialibu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SHM', | |
| iata_code: 'IAL', | |
| municipality: 'Ialibu' | |
| }, | |
| { | |
| name: 'Witu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'WIU', | |
| municipality: 'Garove Island' | |
| }, | |
| { | |
| name: 'Yongai Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'KGH', | |
| municipality: 'Yongai' | |
| }, | |
| { | |
| name: 'Losuia Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'LSA', | |
| municipality: 'Losuia' | |
| }, | |
| { | |
| name: 'Kopiago Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-HE', | |
| iata_code: 'KPA', | |
| municipality: 'Kopiago' | |
| }, | |
| { | |
| name: 'Kiunga Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'UNG', | |
| municipality: 'Kiunga' | |
| }, | |
| { | |
| name: 'Kanainj Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'KNE', | |
| municipality: 'Kanainj' | |
| }, | |
| { | |
| name: 'Kikori Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'KRI', | |
| municipality: 'Kikori' | |
| }, | |
| { | |
| name: 'Kerema Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'KMA', | |
| municipality: 'Kerema' | |
| }, | |
| { | |
| name: 'Kar Kar Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'KRX', | |
| municipality: 'Kar Kar Island' | |
| }, | |
| { | |
| name: 'Kuri Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'KUQ', | |
| municipality: 'Kuri' | |
| }, | |
| { | |
| name: 'Kavieng Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'KVG', | |
| municipality: 'Kavieng' | |
| }, | |
| { | |
| name: 'Londolovit Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'LNV', | |
| municipality: 'Londolovit' | |
| }, | |
| { | |
| name: 'Lab Lab Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'LAB', | |
| municipality: 'Lab Lab Mission' | |
| }, | |
| { | |
| name: 'Lowai Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'LWI', | |
| municipality: 'Lowai' | |
| }, | |
| { | |
| name: 'Leron Plains Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'LPN', | |
| municipality: 'Leron Plains' | |
| }, | |
| { | |
| name: 'Lese Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'LNG', | |
| municipality: 'Lese' | |
| }, | |
| { | |
| name: 'Long Island Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'LSJ', | |
| municipality: 'Long Island' | |
| }, | |
| { | |
| name: 'Yas Island Seaplane Base', | |
| iso_country: 'AE', | |
| country_name: 'United Arab Emirates', | |
| iso_region: 'AE-AZ', | |
| iata_code: 'AYM', | |
| municipality: 'Abu Dhabi' | |
| }, | |
| { | |
| name: 'Manari Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'MRM', | |
| municipality: 'Manari' | |
| }, | |
| { | |
| name: 'Morobe Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'OBM', | |
| municipality: 'Morobe' | |
| }, | |
| { | |
| name: 'Madang Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'MAG', | |
| municipality: 'Madang' | |
| }, | |
| { | |
| name: 'Mount Hagen Kagamuga Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WHM', | |
| iata_code: 'HGU', | |
| municipality: 'Mount Hagen' | |
| }, | |
| { | |
| name: 'Mougulu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'GUV', | |
| municipality: 'Mougulu' | |
| }, | |
| { | |
| name: 'Mendi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SHM', | |
| iata_code: 'MDU', | |
| municipality: 'Mendi' | |
| }, | |
| { | |
| name: 'Momote Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MRL', | |
| iata_code: 'MAS', | |
| municipality: 'Manus Island' | |
| }, | |
| { | |
| name: 'Moro Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SHM', | |
| iata_code: 'MXH', | |
| municipality: 'Moro' | |
| }, | |
| { | |
| name: 'Misima Island Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'MIS', | |
| municipality: 'Misima Island' | |
| }, | |
| { | |
| name: 'Marawaka Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EHG', | |
| iata_code: 'MWG', | |
| municipality: 'Marawaka' | |
| }, | |
| { | |
| name: 'Nankina Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'NKN', | |
| municipality: 'Gwarawon' | |
| }, | |
| { | |
| name: 'Negarbo(Negabo) Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPK', | |
| iata_code: 'GBF', | |
| municipality: 'Negarbo' | |
| }, | |
| { | |
| name: 'Manguna Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EBR', | |
| iata_code: 'MFO', | |
| municipality: 'Manguna' | |
| }, | |
| { | |
| name: 'Kasonombe Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'KSB', | |
| municipality: 'Kasonombe' | |
| }, | |
| { | |
| name: 'Nomane Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPK', | |
| iata_code: 'NMN', | |
| municipality: 'Namane' | |
| }, | |
| { | |
| name: 'Nambaiyufa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPK', | |
| iata_code: 'NBA', | |
| municipality: 'Nambaiyufa' | |
| }, | |
| { | |
| name: 'Nadzab Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'LAE', | |
| municipality: 'Lae' | |
| }, | |
| { | |
| name: 'Konge Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'KGB', | |
| municipality: 'Konge' | |
| }, | |
| { | |
| name: 'Oksapmin Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'OKP', | |
| municipality: 'Oksapmin' | |
| }, | |
| { | |
| name: 'Komako Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'HOC', | |
| municipality: 'Komako' | |
| }, | |
| { | |
| name: 'Komaio Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'KCJ', | |
| municipality: 'Komaio' | |
| }, | |
| { | |
| name: 'Koroba Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-HE', | |
| iata_code: 'KDE', | |
| municipality: 'Koroba' | |
| }, | |
| { | |
| name: 'Open Bay Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EBR', | |
| iata_code: 'OPB', | |
| municipality: 'Maitanakunai' | |
| }, | |
| { | |
| name: 'Pangoa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'PGB', | |
| municipality: 'Pangoa' | |
| }, | |
| { | |
| name: 'Pangia Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SHM', | |
| iata_code: 'PGN', | |
| municipality: 'Pangia' | |
| }, | |
| { | |
| name: 'Mapoda Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'MPF', | |
| municipality: 'Mapoda' | |
| }, | |
| { | |
| name: 'Pumani Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'PMN', | |
| municipality: 'Pumani' | |
| }, | |
| { | |
| name: 'Walluanda Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SHM', | |
| iata_code: 'WLU', | |
| municipality: 'Puri' | |
| }, | |
| { | |
| name: 'Port Moresby Jacksons International Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NCD', | |
| iata_code: 'POM', | |
| municipality: 'Port Moresby' | |
| }, | |
| { | |
| name: 'Sopu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'SPH', | |
| municipality: 'Sopu' | |
| }, | |
| { | |
| name: 'Sialum Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'SXA', | |
| municipality: 'Sialum' | |
| }, | |
| { | |
| name: 'Rumginae Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'RMN', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Karimui Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPK', | |
| iata_code: 'KMR', | |
| municipality: 'Karimui' | |
| }, | |
| { | |
| name: 'Maramuni Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EPW', | |
| iata_code: 'MWI', | |
| municipality: 'Maramuni' | |
| }, | |
| { | |
| name: 'May River Airstrip', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'MRH', | |
| municipality: 'May River' | |
| }, | |
| { | |
| name: 'Suabi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'SBE', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Simberi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'NIS', | |
| municipality: 'Simberi Island' | |
| }, | |
| { | |
| name: 'Sila Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'SIL', | |
| municipality: 'Sila Mission' | |
| }, | |
| { | |
| name: 'Sabah Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NSB', | |
| iata_code: 'SBV', | |
| municipality: 'Sabah' | |
| }, | |
| { | |
| name: 'Simbai Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'SIM', | |
| municipality: 'Simbai' | |
| }, | |
| { | |
| name: 'Selbang Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'SBC', | |
| municipality: 'Selbang' | |
| }, | |
| { | |
| name: 'Sepik Plains Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'SPV', | |
| municipality: 'Sepik Plains' | |
| }, | |
| { | |
| name: 'Sauren Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'SXW', | |
| municipality: 'Sauren' | |
| }, | |
| { | |
| name: 'Masa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'MBV', | |
| municipality: 'Masa' | |
| }, | |
| { | |
| name: 'Tari Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-HE', | |
| iata_code: 'TIZ', | |
| municipality: 'Tari' | |
| }, | |
| { | |
| name: 'Tabubil Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'TBG', | |
| municipality: 'Tabubil' | |
| }, | |
| { | |
| name: 'Tapini Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'TPI', | |
| municipality: 'Tapini' | |
| }, | |
| { | |
| name: 'Tokua Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EBR', | |
| iata_code: 'RAB', | |
| municipality: 'Kokopo' | |
| }, | |
| { | |
| name: 'Tekin Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'TKW', | |
| municipality: 'Tekin' | |
| }, | |
| { | |
| name: 'Tep Tep Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'TEP', | |
| municipality: 'Teptep' | |
| }, | |
| { | |
| name: 'Tsewi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'TSW', | |
| municipality: 'Tsewi' | |
| }, | |
| { | |
| name: 'Tarakbits Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'TRJ', | |
| municipality: 'Tarakbits' | |
| }, | |
| { | |
| name: 'Tawa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'TWY', | |
| municipality: 'Tawa' | |
| }, | |
| { | |
| name: 'Tekadu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'TKB', | |
| municipality: 'Tekadu' | |
| }, | |
| { | |
| name: 'Aiyura Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EHG', | |
| iata_code: 'AYU', | |
| municipality: 'Aiyura Valley' | |
| }, | |
| { | |
| name: 'Umba Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'UMC', | |
| municipality: 'Umba' | |
| }, | |
| { | |
| name: 'Uroubi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'URU', | |
| municipality: 'Uroubi' | |
| }, | |
| { | |
| name: 'Upiara Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'UPR', | |
| municipality: 'Upiara' | |
| }, | |
| { | |
| name: 'Uvol Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EBR', | |
| iata_code: 'UVO', | |
| municipality: 'Uvol' | |
| }, | |
| { | |
| name: 'Talasea Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'TLW', | |
| municipality: 'Talasea' | |
| }, | |
| { | |
| name: 'Torembi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'TCJ', | |
| municipality: 'Torembi' | |
| }, | |
| { | |
| name: 'Vanimo Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'VAI', | |
| municipality: 'Vanimo' | |
| }, | |
| { | |
| name: 'Tonu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NSB', | |
| iata_code: 'TON', | |
| municipality: 'Tonu' | |
| }, | |
| { | |
| name: 'Wabo Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'WAO', | |
| municipality: 'Wabo' | |
| }, | |
| { | |
| name: 'Wapenamanda Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EPW', | |
| iata_code: 'WBM', | |
| municipality: 'Wapenamanda' | |
| }, | |
| { | |
| name: 'Wawoi Falls Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'WAJ', | |
| municipality: 'Wavoi Falls' | |
| }, | |
| { | |
| name: 'Wewak International Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'WWK', | |
| municipality: 'Wewak' | |
| }, | |
| { | |
| name: 'Wonenara Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EHG', | |
| iata_code: 'WOA', | |
| municipality: 'Wonenara' | |
| }, | |
| { | |
| name: 'Wakunai Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NSB', | |
| iata_code: 'WKN', | |
| municipality: 'Wakunai' | |
| }, | |
| { | |
| name: 'Wasu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'WSU', | |
| municipality: 'Wasu' | |
| }, | |
| { | |
| name: 'Woitape Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'WTP', | |
| municipality: 'Fatima Mission' | |
| }, | |
| { | |
| name: 'Wau Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'WUG', | |
| municipality: 'Wau' | |
| }, | |
| { | |
| name: 'Yeva Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'YVD', | |
| municipality: 'Yeva' | |
| }, | |
| { | |
| name: 'Sim Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'SMJ', | |
| municipality: 'Sim' | |
| }, | |
| { | |
| name: 'Weam Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'WEP', | |
| municipality: 'Weam' | |
| }, | |
| { | |
| name: 'Arugam Bay SPB', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-5', | |
| iata_code: 'AYY', | |
| municipality: 'Pottuvil' | |
| }, | |
| { | |
| name: 'Yalumet Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'KYX', | |
| municipality: 'Yalumet' | |
| }, | |
| { | |
| name: 'Yasuru Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'KSX', | |
| municipality: 'Yasuru' | |
| }, | |
| { | |
| name: 'Wasum Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'WUM', | |
| municipality: 'Wasum' | |
| }, | |
| { | |
| name: 'Zabrat Airport', | |
| iso_country: 'AZ', | |
| country_name: 'Azerbaijan', | |
| iso_region: 'AZ-BA', | |
| iata_code: 'ZXT', | |
| municipality: 'Baku' | |
| }, | |
| { | |
| name: 'Fuzuli International Airport', | |
| iso_country: 'AZ', | |
| country_name: 'Azerbaijan', | |
| iso_region: 'AZ-FUZ', | |
| iata_code: 'FZL', | |
| municipality: 'Fuzuli' | |
| }, | |
| { | |
| name: 'Lava Falls Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'HAE', | |
| municipality: 'Supai Village' | |
| }, | |
| { | |
| name: 'Amazon Bay Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'AZB', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Zhenjiang Dalu Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-32', | |
| iata_code: 'AZJ', | |
| municipality: 'Zhenjiang' | |
| }, | |
| { | |
| name: 'Bali Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'BAJ', | |
| municipality: 'Unea Island' | |
| }, | |
| { | |
| name: 'Bambu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'BCP', | |
| municipality: 'Bambu' | |
| }, | |
| { | |
| name: 'Benguera Island Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-I', | |
| iata_code: 'BCW', | |
| municipality: 'Benguera Island' | |
| }, | |
| { | |
| name: 'Milyakburra Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'BCZ', | |
| municipality: 'Bickerton Island' | |
| }, | |
| { | |
| name: 'Willmar Municipal Airport John L Rice Field (2006)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'ILL', | |
| municipality: 'Willmar' | |
| }, | |
| { | |
| name: 'Baindoung Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'BDZ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Malevo Airfield', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-26', | |
| iata_code: 'HKV', | |
| municipality: 'Malevo' | |
| }, | |
| { | |
| name: 'Bezmer Air Base', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-28', | |
| iata_code: 'JAM', | |
| municipality: 'Bezmer' | |
| }, | |
| { | |
| name: 'Aasiaat Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'JEG', | |
| municipality: 'Aasiaat' | |
| }, | |
| { | |
| name: 'Aappilattoq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'AOQ', | |
| municipality: 'Aappilattoq' | |
| }, | |
| { | |
| name: 'Tasiilaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'AGM', | |
| municipality: 'Tasiilaq' | |
| }, | |
| { | |
| name: 'Aappilattoq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'QUV', | |
| municipality: 'Aappilattoq' | |
| }, | |
| { | |
| name: 'Arsuk Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'JRK', | |
| municipality: 'Arsuk' | |
| }, | |
| { | |
| name: 'Ammassivik Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'QUW', | |
| municipality: 'Ammassivik' | |
| }, | |
| { | |
| name: 'Attu Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'QGQ', | |
| municipality: 'Attu' | |
| }, | |
| { | |
| name: 'Narsarsuaq Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'UAK', | |
| municipality: 'Narsarsuaq' | |
| }, | |
| { | |
| name: 'Qasigiannguit Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'JCH', | |
| municipality: 'Qasigiannguit' | |
| }, | |
| { | |
| name: 'Neerlerit Inaat Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'CNP', | |
| municipality: 'Neerlerit Inaat' | |
| }, | |
| { | |
| name: 'Eqalugaarsuit Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'QFG', | |
| municipality: 'Eqalugaarsuit' | |
| }, | |
| { | |
| name: 'Kangilinnguit Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'JGR', | |
| municipality: 'Kangilinnguit' | |
| }, | |
| { | |
| name: 'Nuuk Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'GOH', | |
| municipality: 'Nuuk' | |
| }, | |
| { | |
| name: 'Qeqertarsuaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'JGO', | |
| municipality: 'Qeqertarsuaq' | |
| }, | |
| { | |
| name: 'Ikerasak Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'IKE', | |
| municipality: 'Ikerasak' | |
| }, | |
| { | |
| name: 'Iginniarfik Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'QFI', | |
| municipality: 'Iginniarfik' | |
| }, | |
| { | |
| name: 'Ikerassaarsuk Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'QRY', | |
| municipality: 'Ikerassaarsuk' | |
| }, | |
| { | |
| name: 'Ilimanaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'XIQ', | |
| municipality: 'Ilimanaq' | |
| }, | |
| { | |
| name: 'Innarsuit Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'IUI', | |
| municipality: 'Innarsuit' | |
| }, | |
| { | |
| name: 'Isortoq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'IOQ', | |
| municipality: 'Isortoq' | |
| }, | |
| { | |
| name: 'Ikamiut Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'QJI', | |
| municipality: 'Ikamiut' | |
| }, | |
| { | |
| name: 'Qaqortoq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'JJU', | |
| municipality: 'Qaqortoq' | |
| }, | |
| { | |
| name: 'Ilulissat Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'JAV', | |
| municipality: 'Ilulissat' | |
| }, | |
| { | |
| name: 'Kangaatsiaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'QPW', | |
| municipality: 'Kangaatsiaq' | |
| }, | |
| { | |
| name: 'Kulusuk Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'KUS', | |
| municipality: 'Kulusuk' | |
| }, | |
| { | |
| name: 'Kuummiut Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'KUZ', | |
| municipality: 'Kuummiut' | |
| }, | |
| { | |
| name: 'Kullorsuaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'KHQ', | |
| municipality: 'Kullorsuaq' | |
| }, | |
| { | |
| name: 'Kangersuatsiaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'KGQ', | |
| municipality: 'Kangersuatsiaq' | |
| }, | |
| { | |
| name: 'Kitsissuarsuit Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'QJE', | |
| municipality: 'Kitsissuarsuit' | |
| }, | |
| { | |
| name: 'Illorsuit Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'IOT', | |
| municipality: 'Illorsuit' | |
| }, | |
| { | |
| name: 'Maniitsoq Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QA', | |
| iata_code: 'JSU', | |
| municipality: 'Maniitsoq' | |
| }, | |
| { | |
| name: 'Nanortalik Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'JNN', | |
| municipality: 'Nanortalik' | |
| }, | |
| { | |
| name: 'Nuugaatsiaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'JUU', | |
| municipality: 'Nuugaatsiaq' | |
| }, | |
| { | |
| name: 'Narsaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'JNS', | |
| municipality: 'Narsaq' | |
| }, | |
| { | |
| name: 'Niaqornat Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'NIQ', | |
| municipality: 'Niaqornat' | |
| }, | |
| { | |
| name: 'Nuussuaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'NSQ', | |
| municipality: 'Nuussuaq' | |
| }, | |
| { | |
| name: 'Paamiut Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'JFR', | |
| municipality: 'Paamiut' | |
| }, | |
| { | |
| name: 'Qeqertaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'PQT', | |
| municipality: 'Qeqertaq' | |
| }, | |
| { | |
| name: 'Qaanaaq Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'NAQ', | |
| municipality: 'Qaanaaq' | |
| }, | |
| { | |
| name: 'Qassimiut Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'QJH', | |
| municipality: 'Qassimiut' | |
| }, | |
| { | |
| name: 'Ittoqqortoormiit Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'OBY', | |
| municipality: 'Ittoqqortoormiit' | |
| }, | |
| { | |
| name: 'Kangerlussuaq Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QA', | |
| iata_code: 'SFJ', | |
| municipality: 'Kangerlussuaq' | |
| }, | |
| { | |
| name: 'Sermiligaaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'SGG', | |
| municipality: 'Sermiligaaq' | |
| }, | |
| { | |
| name: 'Siorapaluk Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'SRK', | |
| municipality: 'Siorapaluk' | |
| }, | |
| { | |
| name: 'Saarloq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'QOQ', | |
| municipality: 'Saarloq' | |
| }, | |
| { | |
| name: 'Sisimiut Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QA', | |
| iata_code: 'JHS', | |
| municipality: 'Sisimiut' | |
| }, | |
| { | |
| name: 'Saattut Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'SAE', | |
| municipality: 'Saattut' | |
| }, | |
| { | |
| name: 'Savissivik Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'SVR', | |
| municipality: 'Savissivik' | |
| }, | |
| { | |
| name: 'Tasiusaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'TQA', | |
| municipality: 'Tasiusaq' | |
| }, | |
| { | |
| name: 'Pituffik Space Base', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'THU', | |
| municipality: 'Pituffik' | |
| }, | |
| { | |
| name: 'Tiniteqilaaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-SE', | |
| iata_code: 'TQI', | |
| municipality: 'Tiniteqilaaq' | |
| }, | |
| { | |
| name: 'Tasiusaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-KU', | |
| iata_code: 'XEQ', | |
| municipality: 'Tasiusak' | |
| }, | |
| { | |
| name: 'Upernavik Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'JUV', | |
| municipality: 'Upernavik' | |
| }, | |
| { | |
| name: 'Uummannaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'UMD', | |
| municipality: 'Uummannaq' | |
| }, | |
| { | |
| name: 'Qaarsut Airport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'JQA', | |
| municipality: 'Uummannaq' | |
| }, | |
| { | |
| name: 'Ukkusissat Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-AV', | |
| iata_code: 'JUK', | |
| municipality: 'Ukkusissat' | |
| }, | |
| { | |
| name: 'Bah\u00eda de los \u00c1ngeles Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCN', | |
| iata_code: 'BHL', | |
| municipality: 'Ensenada' | |
| }, | |
| { | |
| name: 'Brighton Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'BHT', | |
| municipality: 'Brighton Downs' | |
| }, | |
| { | |
| name: 'Akureyri Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'AEY', | |
| municipality: 'Akureyri' | |
| }, | |
| { | |
| name: 'Bildudalur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'BIU', | |
| municipality: 'Bildudalur' | |
| }, | |
| { | |
| name: 'Borgarfj\u00f6r\u00f0ur eystri Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-7', | |
| iata_code: 'BGJ', | |
| municipality: 'Borgarfj\u00f6r\u00f0ur eystri' | |
| }, | |
| { | |
| name: 'Bakkafj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'BJD', | |
| municipality: 'Bakkafj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: 'Hjaltabakki Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-5', | |
| iata_code: 'BLO', | |
| municipality: 'Bl\u00f6ndu\u00f3s' | |
| }, | |
| { | |
| name: 'B\u00fa\u00f0ardalur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-3', | |
| iata_code: 'BQD', | |
| municipality: 'B\u00fa\u00f0ardalur' | |
| }, | |
| { | |
| name: 'Brei\u00f0dalsv\u00edk Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-7', | |
| iata_code: 'BXV', | |
| municipality: 'Brei\u00f0dalsv\u00edk' | |
| }, | |
| { | |
| name: 'Dj\u00fapivogur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-7', | |
| iata_code: 'DJU', | |
| municipality: 'Dj\u00fapivogur' | |
| }, | |
| { | |
| name: 'Egilssta\u00f0ir Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-7', | |
| iata_code: 'EGS', | |
| municipality: 'Egilssta\u00f0ir' | |
| }, | |
| { | |
| name: 'F\u00e1skr\u00fa\u00f0sfj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-7', | |
| iata_code: 'FAS', | |
| municipality: 'F\u00e1skr\u00fa\u00f0sfj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: 'Fagurh\u00f3lsm\u00fdri Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-7', | |
| iata_code: 'FAG', | |
| municipality: 'Fagurh\u00f3lsm\u00fdri' | |
| }, | |
| { | |
| name: 'Grundarfj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-3', | |
| iata_code: 'GUU', | |
| municipality: 'Grundarfj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: 'Gj\u00f6gur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'GJR', | |
| municipality: 'Gj\u00f6gur' | |
| }, | |
| { | |
| name: 'Gr\u00edmsey Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'GRY', | |
| municipality: 'Gr\u00edmsey' | |
| }, | |
| { | |
| name: 'H\u00f3lmav\u00edk Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'HVK', | |
| municipality: 'H\u00f3lmav\u00edk' | |
| }, | |
| { | |
| name: 'Hornafj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-8', | |
| iata_code: 'HFN', | |
| municipality: 'H\u00f6fn' | |
| }, | |
| { | |
| name: 'Holt Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'FLI', | |
| municipality: 'Flateyri' | |
| }, | |
| { | |
| name: 'H\u00fasav\u00edk Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'HZK', | |
| municipality: 'H\u00fasav\u00edk' | |
| }, | |
| { | |
| name: 'Ingjaldssan\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'HLO', | |
| municipality: 'Onundarfj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: '\u00cdsafj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'IFJ', | |
| municipality: '\u00cdsafj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: 'Keflavik International Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-2', | |
| iata_code: 'KEF', | |
| municipality: 'Reykjav\u00edk' | |
| }, | |
| { | |
| name: 'K\u00f3pasker Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'OPA', | |
| municipality: 'K\u00f3pasker' | |
| }, | |
| { | |
| name: 'Sau\u00f0\u00e1rkr\u00f3kur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-5', | |
| iata_code: 'SAK', | |
| municipality: 'Sau\u00f0\u00e1rkr\u00f3kur' | |
| }, | |
| { | |
| name: 'Nor\u00f0fj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-7', | |
| iata_code: 'NOR', | |
| municipality: 'Nor\u00f0fj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: '\u00d3lafsfj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'OFJ', | |
| municipality: '\u00d3lafsfj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: 'Patreksfj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'PFJ', | |
| municipality: 'Patreksfj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: 'Reykh\u00f3lar Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'RHA', | |
| municipality: 'Reykh\u00f3lar' | |
| }, | |
| { | |
| name: 'Rif Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-3', | |
| iata_code: 'OLI', | |
| municipality: 'Rif' | |
| }, | |
| { | |
| name: 'Raufarh\u00f6fn Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'RFN', | |
| municipality: 'Raufarh\u00f6fn' | |
| }, | |
| { | |
| name: 'Reykjavik Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-1', | |
| iata_code: 'RKV', | |
| municipality: 'Reykjavik' | |
| }, | |
| { | |
| name: 'Reykjahl\u00ed\u00f0 Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'MVA', | |
| municipality: 'Myvatn' | |
| }, | |
| { | |
| name: 'Siglufj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'SIJ', | |
| municipality: 'Siglufj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: 'Stykkish\u00f3lmur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-3', | |
| iata_code: 'SYK', | |
| municipality: 'Stykkish\u00f3lmur' | |
| }, | |
| { | |
| name: '\u00deingeyri Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-4', | |
| iata_code: 'TEY', | |
| municipality: '\u00deingeyri' | |
| }, | |
| { | |
| name: '\u00de\u00f3rsh\u00f6fn Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-6', | |
| iata_code: 'THO', | |
| municipality: '\u00de\u00f3rsh\u00f6fn' | |
| }, | |
| { | |
| name: 'Vestmannaeyjar Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-8', | |
| iata_code: 'VEY', | |
| municipality: 'Vestmannaeyjar' | |
| }, | |
| { | |
| name: 'Vopnafj\u00f6r\u00f0ur Airport', | |
| iso_country: 'IS', | |
| country_name: 'Iceland', | |
| iso_region: 'IS-7', | |
| iata_code: 'VPN', | |
| municipality: 'Vopnafj\u00f6r\u00f0ur' | |
| }, | |
| { | |
| name: 'Baleela Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-13', | |
| iata_code: 'BJE', | |
| municipality: 'Baleela Base Camp' | |
| }, | |
| { | |
| name: 'Bahja Airport', | |
| iso_country: 'OM', | |
| country_name: 'Oman', | |
| iso_region: 'OM-WU', | |
| iata_code: 'BJQ', | |
| municipality: 'Bahja' | |
| }, | |
| { | |
| name: 'Bentota River Waterdrome', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-1', | |
| iata_code: 'BJT', | |
| municipality: 'Bentota' | |
| }, | |
| { | |
| name: 'Pri\u0161tina Adem Jashari International Airport', | |
| iso_country: 'XK', | |
| country_name: 'Unknown', | |
| iso_region: 'XK-01', | |
| iata_code: 'PRN', | |
| municipality: 'Prishtina' | |
| }, | |
| { | |
| name: 'Bomai Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPK', | |
| iata_code: 'BMH', | |
| municipality: 'Bomai' | |
| }, | |
| { | |
| name: 'Bamburi Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'BMQ', | |
| municipality: 'Bamburi' | |
| }, | |
| { | |
| name: 'Bamu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'BMZ', | |
| municipality: 'Bamu' | |
| }, | |
| { | |
| name: 'Baranof Warm Springs Float and Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'BNF', | |
| municipality: 'Baranof' | |
| }, | |
| { | |
| name: 'Bodinumu Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'BNM', | |
| municipality: 'Bodinumu' | |
| }, | |
| { | |
| name: 'Bundi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'BNT', | |
| municipality: 'Bundi' | |
| }, | |
| { | |
| name: 'Boana Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'BNV', | |
| municipality: 'Boana' | |
| }, | |
| { | |
| name: 'Rurrenabaque Airport', | |
| iso_country: 'BO', | |
| country_name: 'Bolivia, Plurinational State of', | |
| iso_region: 'BO-B', | |
| iata_code: 'RBQ', | |
| municipality: 'Rurrenabaque' | |
| }, | |
| { | |
| name: 'Baures Airport', | |
| iso_country: 'BO', | |
| country_name: 'Bolivia, Plurinational State of', | |
| iso_region: 'BO-B', | |
| iata_code: 'BVL', | |
| municipality: 'Baures' | |
| }, | |
| { | |
| name: 'Brookings Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'BOK', | |
| municipality: 'Brookings' | |
| }, | |
| { | |
| name: 'Bosset Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'BOT', | |
| municipality: 'Bosset' | |
| }, | |
| { | |
| name: 'Boang Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'BOV', | |
| municipality: 'Boang Island' | |
| }, | |
| { | |
| name: 'Batuna Aerodrome', | |
| iso_country: 'SB', | |
| country_name: 'Solomon Islands', | |
| iso_region: 'SB-WE', | |
| iata_code: 'BPF', | |
| municipality: 'Batuna Mission Station' | |
| }, | |
| { | |
| name: 'Bartlett Cove Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'BQV', | |
| municipality: 'Gustavus' | |
| }, | |
| { | |
| name: 'Pedro Vieira Moreira Airport', | |
| iso_country: 'BR', | |
| country_name: 'Brazil', | |
| iso_region: 'BR-PB', | |
| iata_code: 'CJZ', | |
| municipality: 'Cajazeiras' | |
| }, | |
| { | |
| name: 'Glauber de Andrade Rocha Airport', | |
| iso_country: 'BR', | |
| country_name: 'Brazil', | |
| iso_region: 'BR-BA', | |
| iata_code: 'VDC', | |
| municipality: 'Vit\u00f3ria da Conquista' | |
| }, | |
| { | |
| name: 'Alenquer Municipal Airport', | |
| iso_country: 'BR', | |
| country_name: 'Brazil', | |
| iso_region: 'BR-PA', | |
| iata_code: 'ALT', | |
| municipality: 'Alenquer' | |
| }, | |
| { | |
| name: 'Bimini North Seaplane Base', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-BI', | |
| iata_code: 'NSB', | |
| municipality: 'Bimini' | |
| }, | |
| { | |
| name: 'Bensbach Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'BSP', | |
| municipality: 'Bensbach' | |
| }, | |
| { | |
| name: 'Besakoa Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'BSV', | |
| municipality: 'Besakoa' | |
| }, | |
| { | |
| name: 'Betong International Airport', | |
| iso_country: 'TH', | |
| country_name: 'Thailand', | |
| iso_region: 'TH-95', | |
| iata_code: 'BTZ', | |
| municipality: 'Betong' | |
| }, | |
| { | |
| name: 'Bulolo Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'BUL', | |
| municipality: 'Bulolo' | |
| }, | |
| { | |
| name: 'Esperadinha Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-S', | |
| iata_code: 'BVR', | |
| municipality: 'Brava Island' | |
| }, | |
| { | |
| name: 'Hukuntsi Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-KG', | |
| iata_code: 'HUK', | |
| municipality: 'Hukuntsi' | |
| }, | |
| { | |
| name: 'Bawan Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'BWJ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Bewani Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'BWP', | |
| municipality: 'Bewani' | |
| }, | |
| { | |
| name: 'Blue Lagoon Seaplane Base', | |
| iso_country: 'FJ', | |
| country_name: 'Fiji', | |
| iso_region: 'FJ-W', | |
| iata_code: 'BXL', | |
| municipality: 'Nanuya Lailai Island' | |
| }, | |
| { | |
| name: 'Bunsil Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'BXZ', | |
| municipality: 'Bunsil - Umboi Island' | |
| }, | |
| { | |
| name: 'Orsha Airport - Balbasovo Air Base', | |
| iso_country: 'BY', | |
| country_name: 'Belarus', | |
| iso_region: 'BY-VI', | |
| iata_code: 'TXC', | |
| municipality: 'Orsha' | |
| }, | |
| { | |
| name: 'Boundary Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'BYA', | |
| municipality: 'Boundary' | |
| }, | |
| { | |
| name: 'Bella Yella Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-LO', | |
| iata_code: 'BYL', | |
| municipality: 'Beliyela' | |
| }, | |
| { | |
| name: 'Beira Lake Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-1', | |
| iata_code: 'BYV', | |
| municipality: 'Colombo' | |
| }, | |
| { | |
| name: 'Hector Silva Airstrip', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-CY', | |
| iata_code: 'BCV', | |
| municipality: 'Belmopan' | |
| }, | |
| { | |
| name: 'Big Creek Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-SC', | |
| iata_code: 'BGK', | |
| municipality: 'Big Creek' | |
| }, | |
| { | |
| name: 'Caye Caulker Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-BZ', | |
| iata_code: 'CUK', | |
| municipality: 'Caye Caulker' | |
| }, | |
| { | |
| name: 'Caye Chapel Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-BZ', | |
| iata_code: 'CYC', | |
| municipality: 'Caye Chapel' | |
| }, | |
| { | |
| name: 'Corozal Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-CZL', | |
| iata_code: 'CZH', | |
| municipality: 'Corozal' | |
| }, | |
| { | |
| name: 'Dangriga Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-SC', | |
| iata_code: 'DGA', | |
| municipality: 'Dangriga' | |
| }, | |
| { | |
| name: 'Independence Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-SC', | |
| iata_code: 'INB', | |
| municipality: 'Independence' | |
| }, | |
| { | |
| name: 'Melinda Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-SC', | |
| iata_code: 'MDB', | |
| municipality: 'Melinda' | |
| }, | |
| { | |
| name: 'H.E Alfredo Martinez (Tower Hill) Airstrip', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-OW', | |
| iata_code: 'ORZ', | |
| municipality: 'Orange Walk' | |
| }, | |
| { | |
| name: 'Placencia Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-SC', | |
| iata_code: 'PLJ', | |
| municipality: 'Placencia' | |
| }, | |
| { | |
| name: 'Punta Gorda Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-TOL', | |
| iata_code: 'PND', | |
| municipality: 'Punta Gorda' | |
| }, | |
| { | |
| name: 'Sartaneja Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-CZL', | |
| iata_code: 'SJX', | |
| municipality: 'Sartaneja' | |
| }, | |
| { | |
| name: 'John Greif II Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-CY', | |
| iata_code: 'SPR', | |
| municipality: 'San Pedro' | |
| }, | |
| { | |
| name: 'Matthew Spain Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-CY', | |
| iata_code: 'SQS', | |
| municipality: 'Spanish Lookout' | |
| }, | |
| { | |
| name: 'Santa Cruz Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-CZL', | |
| iata_code: 'STU', | |
| municipality: 'Santa Cruz' | |
| }, | |
| { | |
| name: 'Silver Creek Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-SC', | |
| iata_code: 'SVK', | |
| municipality: 'Silver Creek' | |
| }, | |
| { | |
| name: 'Sir Barry Bowen Municipal Airport', | |
| iso_country: 'BZ', | |
| country_name: 'Belize', | |
| iso_region: 'BZ-BZ', | |
| iata_code: 'TZA', | |
| municipality: 'Belize City' | |
| }, | |
| { | |
| name: 'Bazaruto Island Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-I', | |
| iata_code: 'BZB', | |
| municipality: 'Bazaruto Island' | |
| }, | |
| { | |
| name: 'Bemolanga Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'BZM', | |
| municipality: 'Bemolanga' | |
| }, | |
| { | |
| name: 'Primrose Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'PFM', | |
| municipality: 'Primrose' | |
| }, | |
| { | |
| name: 'Saglek Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YSV', | |
| municipality: 'Saglek' | |
| }, | |
| { | |
| name: 'Stuart Island Airstrip', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YRR', | |
| municipality: 'Big Bay' | |
| }, | |
| { | |
| name: 'Mary River Aerodrome', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YMV', | |
| municipality: 'Mary River' | |
| }, | |
| { | |
| name: 'Hakai Passage Water Aerodrome', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YHC', | |
| municipality: 'Hecate Island' | |
| }, | |
| { | |
| name: 'Montague Harbour Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YMF', | |
| municipality: 'Galiano Island' | |
| }, | |
| { | |
| name: 'Paradise Skypark Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'PYS', | |
| municipality: 'Paradise' | |
| }, | |
| { | |
| name: 'Bedwell Harbour Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YBW', | |
| municipality: 'Bedwell Harbour' | |
| }, | |
| { | |
| name: 'Tofino Harbour Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YTP', | |
| municipality: 'Tofino' | |
| }, | |
| { | |
| name: 'Nanaimo Harbour Water Aerodrome', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZNA', | |
| municipality: 'Nanaimo' | |
| }, | |
| { | |
| name: 'Trail Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YZZ', | |
| municipality: 'Trail' | |
| }, | |
| { | |
| name: 'Merritt Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YMB', | |
| municipality: 'Merritt' | |
| }, | |
| { | |
| name: 'Campbell River Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YHH', | |
| municipality: 'Campbell River' | |
| }, | |
| { | |
| name: 'Whistler/Green Lake Water Aerodrome', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YWS', | |
| municipality: 'Whistler' | |
| }, | |
| { | |
| name: 'Bamfield Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YBF', | |
| municipality: 'Bamfield' | |
| }, | |
| { | |
| name: 'Big Bay Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YIG', | |
| municipality: 'Stuart Island' | |
| }, | |
| { | |
| name: 'Chilko Lake (Tsylos Park Lodge) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'CJH', | |
| municipality: 'Chilko Lake' | |
| }, | |
| { | |
| name: 'Pender Harbour Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YPT', | |
| municipality: 'Sunshine Coast' | |
| }, | |
| { | |
| name: 'Ocean Falls Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZOF', | |
| municipality: 'Ocean Falls' | |
| }, | |
| { | |
| name: 'Courtenay Airpark', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YCA', | |
| municipality: 'Courtenay' | |
| }, | |
| { | |
| name: 'Creston Valley Regional Airport - Art Sutcliffe Field', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'CFQ', | |
| municipality: 'Creston' | |
| }, | |
| { | |
| name: 'Anahim Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YAA', | |
| municipality: 'Anahim Lake' | |
| }, | |
| { | |
| name: 'Douglas Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'DGF', | |
| municipality: 'Douglas Lake' | |
| }, | |
| { | |
| name: 'Fort MacKay/Albian Aerodrome', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'JHL', | |
| municipality: 'Albian Village' | |
| }, | |
| { | |
| name: 'Tahsis Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZTS', | |
| municipality: 'Tahsis' | |
| }, | |
| { | |
| name: 'Duncan Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'DUQ', | |
| municipality: 'Duncan' | |
| }, | |
| { | |
| name: 'Sechelt-Gibsons Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YHS', | |
| municipality: 'Sechelt' | |
| }, | |
| { | |
| name: 'Kitkatla Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YKK', | |
| municipality: 'Kitkatla' | |
| }, | |
| { | |
| name: 'Queen Charlotte City Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZQS', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Powell Lake Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'WPL', | |
| municipality: 'Powell River' | |
| }, | |
| { | |
| name: 'Qualicum Beach Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'XQU', | |
| municipality: 'Qualicum Beach' | |
| }, | |
| { | |
| name: 'Port McNeill Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YMP', | |
| municipality: 'Port McNeill' | |
| }, | |
| { | |
| name: 'Rivers Inlet Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YRN', | |
| municipality: 'Rivers Inlet' | |
| }, | |
| { | |
| name: 'Sullivan Bay Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YTG', | |
| municipality: 'Sullivan Bay' | |
| }, | |
| { | |
| name: 'Mansons Landing Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YMU', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Mayne Island Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YAV', | |
| municipality: 'Miners Bay' | |
| }, | |
| { | |
| name: 'Bella Bella/Shearwater Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YSX', | |
| municipality: 'Bella Bella' | |
| }, | |
| { | |
| name: 'Ganges Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YGG', | |
| municipality: 'Salt Spring Island' | |
| }, | |
| { | |
| name: 'Hartley Bay Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YTB', | |
| municipality: 'Hartley Bay' | |
| }, | |
| { | |
| name: 'Cache Creek-Ashcroft Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YZA', | |
| municipality: 'Cache Creek' | |
| }, | |
| { | |
| name: 'Bella Bella (Campbell Island) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZEL', | |
| municipality: 'Bella Bella' | |
| }, | |
| { | |
| name: 'Cherrabun Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'CBC', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Alberni Valley Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YPB', | |
| municipality: 'Port Alberni' | |
| }, | |
| { | |
| name: 'Bob Quinn Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YBO', | |
| municipality: 'Bob Quinn Lake' | |
| }, | |
| { | |
| name: 'Tungsten (Cantung) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'TNS', | |
| municipality: 'Tungsten' | |
| }, | |
| { | |
| name: 'Tumbler Ridge Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'TUX', | |
| municipality: 'Tumbler Ridge' | |
| }, | |
| { | |
| name: 'Williams Harbour Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YWM', | |
| municipality: 'Williams Harbour' | |
| }, | |
| { | |
| name: 'Postville Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YSO', | |
| municipality: 'Postville' | |
| }, | |
| { | |
| name: 'Black Tickle Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YBI', | |
| municipality: 'Black Tickle' | |
| }, | |
| { | |
| name: 'Charlottetown Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YHG', | |
| municipality: 'Charlottetown' | |
| }, | |
| { | |
| name: 'St. Lewis (Fox Harbour) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YFX', | |
| municipality: 'St. Lewis' | |
| }, | |
| { | |
| name: 'Port Hope Simpson Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YHA', | |
| municipality: 'Port Hope Simpson' | |
| }, | |
| { | |
| name: 'Rigolet Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YRG', | |
| municipality: 'Rigolet' | |
| }, | |
| { | |
| name: 'Kasongo-Lunda Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KG', | |
| iata_code: 'KGN', | |
| municipality: 'Kasongo-Lunda' | |
| }, | |
| { | |
| name: 'Pweto Airport (New)', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-HK', | |
| iata_code: 'PWO', | |
| municipality: 'Pweto' | |
| }, | |
| { | |
| name: 'George T Lewis Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'CDK', | |
| municipality: 'Cedar Key' | |
| }, | |
| { | |
| name: 'Diavik Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'DVK', | |
| municipality: 'Diavik' | |
| }, | |
| { | |
| name: 'Doris Lake', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'JOJ', | |
| municipality: 'Hope Bay' | |
| }, | |
| { | |
| name: 'Fairview Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'ZFW', | |
| municipality: 'Fairview' | |
| }, | |
| { | |
| name: 'Jasper-Hinton Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YJP', | |
| municipality: 'Hinton' | |
| }, | |
| { | |
| name: 'What\u00ec Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YLE', | |
| municipality: 'What\u00ec' | |
| }, | |
| { | |
| name: 'Drayton Valley Industrial Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YDC', | |
| municipality: 'Drayton Valley' | |
| }, | |
| { | |
| name: 'Fort McMurray / Mildred Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'NML', | |
| municipality: 'Fort McMurray' | |
| }, | |
| { | |
| name: 'Conklin (Leismer) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'CFM', | |
| municipality: 'Conklin' | |
| }, | |
| { | |
| name: 'Kavadja Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-HK', | |
| iata_code: 'KWD', | |
| municipality: 'Kavadja' | |
| }, | |
| { | |
| name: 'Taltheilei Narrows Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'GSL', | |
| municipality: 'Taltheilei Narrows' | |
| }, | |
| { | |
| name: 'Macmillan Pass Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'XMP', | |
| municipality: 'Macmillan Pass' | |
| }, | |
| { | |
| name: 'Great Bear Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'DAS', | |
| municipality: 'Great Bear Lake' | |
| }, | |
| { | |
| name: 'Fort Mackay / Firebag', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YFI', | |
| municipality: 'Suncor Energy Site' | |
| }, | |
| { | |
| name: 'Wekwe\u00e8t\u00ec Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YFJ', | |
| municipality: 'Wekwe\u00e8t\u00ec' | |
| }, | |
| { | |
| name: 'Donnelly Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YOE', | |
| municipality: 'Donnelly' | |
| }, | |
| { | |
| name: 'Cheadle Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'TIL', | |
| municipality: 'Cheadle' | |
| }, | |
| { | |
| name: 'Okoyo Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-8', | |
| iata_code: 'OKG', | |
| municipality: 'Okoyo' | |
| }, | |
| { | |
| name: 'Craig Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CGA', | |
| municipality: 'Craig' | |
| }, | |
| { | |
| name: 'Cape Gloucester Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'CGC', | |
| municipality: 'Cape Gloucester' | |
| }, | |
| { | |
| name: 'Casiguran Airport', | |
| iso_country: 'PH', | |
| country_name: 'Philippines', | |
| iso_region: 'PH-AUR', | |
| iata_code: 'CGG', | |
| municipality: 'Casiguran' | |
| }, | |
| { | |
| name: 'Gahcho Kue', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'GHK', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Circle Hot Springs Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CHP', | |
| municipality: 'Circle Hot Springs' | |
| }, | |
| { | |
| name: 'Chomley Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CIV', | |
| municipality: 'Chomley' | |
| }, | |
| { | |
| name: 'Laurie River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'LRQ', | |
| municipality: 'Laurie River' | |
| }, | |
| { | |
| name: 'Hatchet Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YDJ', | |
| municipality: 'Hatchet Lake' | |
| }, | |
| { | |
| name: 'Kasba Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YDU', | |
| municipality: 'Kasba Lake' | |
| }, | |
| { | |
| name: 'Fort Reliance Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YFL', | |
| municipality: 'Fort Reliance' | |
| }, | |
| { | |
| name: 'Cluff Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'XCL', | |
| municipality: 'Cluff Lake' | |
| }, | |
| { | |
| name: 'Knee Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YKE', | |
| municipality: 'Knee Lake' | |
| }, | |
| { | |
| name: 'Summer Beaver Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'SUR', | |
| municipality: 'Summer Beaver' | |
| }, | |
| { | |
| name: 'Crooked Creek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CKD', | |
| municipality: 'Crooked Creek' | |
| }, | |
| { | |
| name: 'Tisdale Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YTT', | |
| municipality: 'Tisdale' | |
| }, | |
| { | |
| name: 'Wapekeka Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YAX', | |
| municipality: 'Angling Lake' | |
| }, | |
| { | |
| name: 'Wunnumin Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'WNN', | |
| municipality: 'Wunnumin Lake' | |
| }, | |
| { | |
| name: 'Opapimiskan Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YBS', | |
| municipality: 'Opapimiskan Lake' | |
| }, | |
| { | |
| name: 'North Spirit Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YNO', | |
| municipality: 'North Spirit Lake' | |
| }, | |
| { | |
| name: 'Crane Island Airstrip', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'CKR', | |
| municipality: 'Crane Island' | |
| }, | |
| { | |
| name: 'Cordova Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CKU', | |
| municipality: 'Cordova' | |
| }, | |
| { | |
| name: 'North of Sixty Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YDW', | |
| municipality: 'Obre Lake' | |
| }, | |
| { | |
| name: 'Chicken Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CKX', | |
| municipality: 'Chicken' | |
| }, | |
| { | |
| name: 'Nuevo Chait\u00e9n Airport', | |
| iso_country: 'CL', | |
| country_name: 'Chile', | |
| iso_region: 'CL-LL', | |
| iata_code: 'WCH', | |
| municipality: 'Chait\u00e9n' | |
| }, | |
| { | |
| name: 'New Camet\u00e1 Airport', | |
| iso_country: 'BR', | |
| country_name: 'Brazil', | |
| iso_region: 'BR-PA', | |
| iata_code: 'CMT', | |
| municipality: 'Camet\u00e1' | |
| }, | |
| { | |
| name: 'Caia Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-S', | |
| iata_code: 'CMZ', | |
| municipality: 'Caia' | |
| }, | |
| { | |
| name: 'Tangshan Sann\u00fche Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-13', | |
| iata_code: 'TVS', | |
| municipality: 'Tangshan (Fengrun)' | |
| }, | |
| { | |
| name: 'Yuanmou Air Base', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-53', | |
| iata_code: 'YUA', | |
| municipality: 'Chuxiong (Yuanmou)' | |
| }, | |
| { | |
| name: 'Zhangjiakou Ningyuan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-13', | |
| iata_code: 'ZQZ', | |
| municipality: 'Zhangjiakou' | |
| }, | |
| { | |
| name: 'Baoshan Yunrui Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-53', | |
| iata_code: 'BSD', | |
| municipality: 'Baoshan (Longyang)' | |
| }, | |
| { | |
| name: 'Dazu Air Base', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-50', | |
| iata_code: 'DZU', | |
| municipality: 'Dazu' | |
| }, | |
| { | |
| name: 'Lincang Boshang Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-53', | |
| iata_code: 'LNJ', | |
| municipality: 'Lincang' | |
| }, | |
| { | |
| name: 'Xigaze Peace Airport / Shigatse Air Base', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-54', | |
| iata_code: 'RKZ', | |
| municipality: 'Xigaz\u00ea (Samzhubz\u00ea)' | |
| }, | |
| { | |
| name: "Panzhihua Bao'anying Airport", | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-51', | |
| iata_code: 'PZI', | |
| municipality: 'Panzhihua (Renhe)' | |
| }, | |
| { | |
| name: 'Zigong Fengming Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-51', | |
| iata_code: 'ZKL', | |
| municipality: 'Zigong (Gongjing)' | |
| }, | |
| { | |
| name: 'Foshan Shadi Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-44', | |
| iata_code: 'FUO', | |
| municipality: 'Foshan (Nanhai)' | |
| }, | |
| { | |
| name: 'Bazhong Enyang Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-51', | |
| iata_code: 'BZX', | |
| municipality: 'Bazhong (Enyang)' | |
| }, | |
| { | |
| name: 'Xinyang Minggang Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-41', | |
| iata_code: 'XAI', | |
| municipality: 'Xinyang' | |
| }, | |
| { | |
| name: 'Huizhou Pingtan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-44', | |
| iata_code: 'HUZ', | |
| municipality: 'Huizhou (Pingtan)' | |
| }, | |
| { | |
| name: 'Shangluo Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-61', | |
| iata_code: 'DFA', | |
| municipality: 'Shangluo (Danfeng)' | |
| }, | |
| { | |
| name: 'Shaoguan Danxia Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-44', | |
| iata_code: 'HSC', | |
| municipality: 'Shaoguan' | |
| }, | |
| { | |
| name: 'Jinggangshan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-36', | |
| iata_code: 'JGS', | |
| municipality: "Ji'an" | |
| }, | |
| { | |
| name: 'Baise (Bose) Bama Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-45', | |
| iata_code: 'AEB', | |
| municipality: 'Baise (Tianyang)' | |
| }, | |
| { | |
| name: 'Lianyungang Huaguoshan International Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-32', | |
| iata_code: 'LYG', | |
| municipality: 'Lianyungang' | |
| }, | |
| { | |
| name: 'Dongying Shengli Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-37', | |
| iata_code: 'DOY', | |
| municipality: 'Dongying (Kenli)' | |
| }, | |
| { | |
| name: 'Xingcheng Air Base', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-21', | |
| iata_code: 'XEN', | |
| municipality: 'Huludao (Xingcheng)' | |
| }, | |
| { | |
| name: 'Altay Xuedu Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-65', | |
| iata_code: 'AAT', | |
| municipality: 'Altay' | |
| }, | |
| { | |
| name: 'Tianshui Maijishan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-62', | |
| iata_code: 'THQ', | |
| municipality: 'Tianshui (Maiji)' | |
| }, | |
| { | |
| name: 'Zhangye Ganzhou Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-62', | |
| iata_code: 'YZY', | |
| municipality: 'Zhangye (Ganzhou)' | |
| }, | |
| { | |
| name: 'Morin Dawa Banner Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-15', | |
| iata_code: 'DWS', | |
| municipality: 'Hulunbuir' | |
| }, | |
| { | |
| name: 'Shijiazhuang Luancheng Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-13', | |
| iata_code: 'LCT', | |
| municipality: 'Shijiazhuang' | |
| }, | |
| { | |
| name: 'Wuhan Hannan Municipal Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-42', | |
| iata_code: 'WHN', | |
| municipality: 'Wuhan (Hannan)' | |
| }, | |
| { | |
| name: 'Beijing Nanjiao Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-11', | |
| iata_code: 'NAY', | |
| municipality: 'Beijing' | |
| }, | |
| { | |
| name: 'Dandong Langtou Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-21', | |
| iata_code: 'DDG', | |
| municipality: 'Dandong (Zhenxing)' | |
| }, | |
| { | |
| name: 'Harbin Pingfang Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-23', | |
| iata_code: 'PFA', | |
| municipality: 'Harbin' | |
| }, | |
| { | |
| name: 'Penglai Shahekou Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-37', | |
| iata_code: 'PNJ', | |
| municipality: 'Yantai' | |
| }, | |
| { | |
| name: 'Binzhou Daguo Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-37', | |
| iata_code: 'CBZ', | |
| municipality: 'Binzhou' | |
| }, | |
| { | |
| name: 'Rikaze Dingri Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-54', | |
| iata_code: 'DDR', | |
| municipality: 'Xigaz\u00ea (Dingri)' | |
| }, | |
| { | |
| name: 'Tashikuergan Hongqilafu Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-65', | |
| iata_code: 'HQL', | |
| municipality: 'Tashikuergan' | |
| }, | |
| { | |
| name: 'Jiande Qiandaohu General Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-33', | |
| iata_code: 'JDE', | |
| municipality: 'Hangzhou' | |
| }, | |
| { | |
| name: 'Zhaodong Beidahuang General Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-23', | |
| iata_code: 'HLJ', | |
| municipality: 'Suihua' | |
| }, | |
| { | |
| name: 'Taiyuan Yaocheng Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-14', | |
| iata_code: 'TYC', | |
| municipality: 'Taiyuan' | |
| }, | |
| { | |
| name: 'Orku Baikouquan Airport (under construction)', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-65', | |
| iata_code: 'WRH', | |
| municipality: 'Urhu' | |
| }, | |
| { | |
| name: 'Ruijin Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-36', | |
| iata_code: 'JRJ', | |
| municipality: 'Ruijin' | |
| }, | |
| { | |
| name: 'Zhanjiang Wuchuan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-44', | |
| iata_code: 'ZHA', | |
| municipality: 'Zhanjiang' | |
| }, | |
| { | |
| name: 'Ali Pulan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-54', | |
| iata_code: 'APJ', | |
| municipality: 'Burang Town' | |
| }, | |
| { | |
| name: 'Zhaosu Tianma Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-65', | |
| iata_code: 'ZFL', | |
| municipality: 'Zhaosu' | |
| }, | |
| { | |
| name: 'Yinchuan Yueyahu Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-64', | |
| iata_code: 'YEH', | |
| municipality: 'Yinchuan' | |
| }, | |
| { | |
| name: 'Longchuan Guangsong Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-53', | |
| iata_code: 'LCS', | |
| municipality: 'Dehong (Longchuan)' | |
| }, | |
| { | |
| name: 'Lanping Fenghua General Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-53', | |
| iata_code: 'LFH', | |
| municipality: 'Lanping Bai' | |
| }, | |
| { | |
| name: 'Zhongshan Ferry Port', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-44', | |
| iata_code: 'ZGN', | |
| municipality: 'Zhongshan' | |
| }, | |
| { | |
| name: 'Bozhou Airport (under construction)', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-34', | |
| iata_code: 'BZJ', | |
| municipality: 'Bozhou' | |
| }, | |
| { | |
| name: 'Bailing Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-15', | |
| iata_code: 'BKV', | |
| municipality: 'Bailingmiao' | |
| }, | |
| { | |
| name: 'Hejing Bayinbuluke Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-65', | |
| iata_code: 'HJB', | |
| municipality: 'Hejing' | |
| }, | |
| { | |
| name: 'Otog Front Banner Oljoq Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-15', | |
| iata_code: 'OTQ', | |
| municipality: 'Otog Front Banner' | |
| }, | |
| { | |
| name: 'Qitai Jiangbulake Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-65', | |
| iata_code: 'JBK', | |
| municipality: 'Qitai' | |
| }, | |
| { | |
| name: 'Lishui Airport (under construction)', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-33', | |
| iata_code: 'LIJ', | |
| municipality: 'Lishui' | |
| }, | |
| { | |
| name: 'Nanchang Yaohu Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-36', | |
| iata_code: 'YHJ', | |
| municipality: 'Nanchang' | |
| }, | |
| { | |
| name: 'Otog Banner Wulan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-15', | |
| iata_code: 'OTO', | |
| municipality: 'Wulan' | |
| }, | |
| { | |
| name: 'Nantong Xingdong International Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-32', | |
| iata_code: 'NTG', | |
| municipality: 'Nantong (Tongzhou)' | |
| }, | |
| { | |
| name: 'Bearskin Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'XBE', | |
| municipality: 'Bearskin Lake' | |
| }, | |
| { | |
| name: 'Natuashish Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YNP', | |
| municipality: 'Natuashish' | |
| }, | |
| { | |
| name: 'White River Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YWR', | |
| municipality: 'White River' | |
| }, | |
| { | |
| name: 'Parry Sound Area Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YPD', | |
| municipality: 'Parry Sound' | |
| }, | |
| { | |
| name: 'Brockville - Thousand Islands Regional Tackaberry Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'XBR', | |
| municipality: 'Brockville' | |
| }, | |
| { | |
| name: 'Kingfisher Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'KIF', | |
| municipality: 'Kingfisher Lake' | |
| }, | |
| { | |
| name: 'Ogoki Post Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YOG', | |
| municipality: 'Ogoki Post' | |
| }, | |
| { | |
| name: 'Virgilio Barco Vargas (La Chorrera) Airport', | |
| iso_country: 'CO', | |
| country_name: 'Colombia', | |
| iso_region: 'CO-AMA', | |
| iata_code: 'LCR', | |
| municipality: 'La Chorrera' | |
| }, | |
| { | |
| name: 'Las Cruces Airport', | |
| iso_country: 'CO', | |
| country_name: 'Colombia', | |
| iso_region: 'CO-SAN', | |
| iata_code: 'SNT', | |
| municipality: 'Sabana de Torres' | |
| }, | |
| { | |
| name: 'Tarapac\u00e1 Airport', | |
| iso_country: 'CO', | |
| country_name: 'Colombia', | |
| iso_region: 'CO-AMA', | |
| iata_code: 'TCD', | |
| municipality: 'Tarapac\u00e1' | |
| }, | |
| { | |
| name: 'Bar River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YEB', | |
| municipality: 'Echo Bay' | |
| }, | |
| { | |
| name: 'Cape Orford Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EBR', | |
| iata_code: 'CPI', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Parry Sound/Frying Pan Island-Sans Souci Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YSI', | |
| municipality: 'Frying Pan Island' | |
| }, | |
| { | |
| name: 'Poplar Hill Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YHP', | |
| municipality: 'Poplar Hill' | |
| }, | |
| { | |
| name: 'Keewaywin Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'KEW', | |
| municipality: 'Keewaywin' | |
| }, | |
| { | |
| name: 'C\u00f3bano Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'ACO', | |
| municipality: 'C\u00f3bano' | |
| }, | |
| { | |
| name: 'Reef Hueston Helicopter Landing', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'XVQ', | |
| municipality: 'Streatham' | |
| }, | |
| { | |
| name: 'Kirby Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'KFM', | |
| municipality: 'Kirby Lake' | |
| }, | |
| { | |
| name: 'Sable Island Landing Strip', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NS', | |
| iata_code: 'YSA', | |
| municipality: 'Sable Island' | |
| }, | |
| { | |
| name: 'Lebel-sur-Quevillon Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YLS', | |
| municipality: 'Lebel-sur-Qu\u00e9villon' | |
| }, | |
| { | |
| name: 'Snap Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YNX', | |
| municipality: 'Snap Lake Mine' | |
| }, | |
| { | |
| name: 'La Sarre Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'SSQ', | |
| municipality: 'La Sarre' | |
| }, | |
| { | |
| name: 'Chisasibi Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YKU', | |
| municipality: 'Chisasibi' | |
| }, | |
| { | |
| name: 'T\u00eate-\u00e0-la-Baleine Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'ZTB', | |
| municipality: 'T\u00eate-\u00e0-la-Baleine' | |
| }, | |
| { | |
| name: 'K\u00e9gashka Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'ZKG', | |
| municipality: 'C\u00f4te-Nord-du-Golfe-du-Saint-Laurent' | |
| }, | |
| { | |
| name: 'Chute-Des-Passes/Lac Margane Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YWQ', | |
| municipality: 'Chutes-des-Passes' | |
| }, | |
| { | |
| name: 'Carutapera Airport', | |
| iso_country: 'BR', | |
| country_name: 'Brazil', | |
| iso_region: 'BR-MA', | |
| iata_code: 'CTP', | |
| municipality: 'Carutapera' | |
| }, | |
| { | |
| name: 'Donaldson Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YAU', | |
| municipality: 'Kattiniq' | |
| }, | |
| { | |
| name: 'La Romaine Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'ZGS', | |
| municipality: 'Le Golfe-du-Saint-Laurent' | |
| }, | |
| { | |
| name: 'Fontanges Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YFG', | |
| municipality: 'Fontanges' | |
| }, | |
| { | |
| name: 'La Tabati\u00e8re Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'ZLT', | |
| municipality: 'La Tabati\u00e8re' | |
| }, | |
| { | |
| name: 'Culion Airport', | |
| iso_country: 'PH', | |
| country_name: 'Philippines', | |
| iso_region: 'PH-PLW', | |
| iata_code: 'CUJ', | |
| municipality: 'Culion' | |
| }, | |
| { | |
| name: 'Hollister Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'HLI', | |
| municipality: 'Hollister' | |
| }, | |
| { | |
| name: 'Cape Vogel Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'CVL', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Chitina Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CXC', | |
| municipality: 'Chitina' | |
| }, | |
| { | |
| name: 'Lefkoniko Airport / Ge\u00e7itkale Air Base', | |
| iso_country: 'CY', | |
| country_name: 'Cyprus', | |
| iso_region: 'CY-03', | |
| iata_code: 'GEC', | |
| municipality: 'Lefkoniko (Ge\u00e7itkale)' | |
| }, | |
| { | |
| name: 'Arctic Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YAB', | |
| municipality: 'Arctic Bay' | |
| }, | |
| { | |
| name: 'Cat Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YAC', | |
| municipality: 'Cat Lake' | |
| }, | |
| { | |
| name: 'La Grande-3 Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YAR', | |
| municipality: 'La Grande-3' | |
| }, | |
| { | |
| name: 'Fort Frances Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YAG', | |
| municipality: 'Fort Frances' | |
| }, | |
| { | |
| name: 'La Grande-4 Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YAH', | |
| municipality: 'La Grande-4' | |
| }, | |
| { | |
| name: 'Alert Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YAL', | |
| municipality: 'Alert Bay' | |
| }, | |
| { | |
| name: 'Sault Ste Marie Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YAM', | |
| municipality: 'Sault Ste Marie' | |
| }, | |
| { | |
| name: 'Kasabonika Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'XKS', | |
| municipality: 'Kasabonika' | |
| }, | |
| { | |
| name: 'Kangirsuk Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YKG', | |
| municipality: 'Kangirsuk' | |
| }, | |
| { | |
| name: 'Attawapiskat Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YAT', | |
| municipality: 'Attawapiskat' | |
| }, | |
| { | |
| name: 'St. Anthony Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YAY', | |
| municipality: 'St. Anthony' | |
| }, | |
| { | |
| name: 'Tofino / Long Beach Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YAZ', | |
| municipality: 'Tofino' | |
| }, | |
| { | |
| name: 'Banff Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YBA', | |
| municipality: 'Banff' | |
| }, | |
| { | |
| name: 'Kugaaruk Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YBB', | |
| municipality: 'Kugaaruk' | |
| }, | |
| { | |
| name: 'Baie-Comeau Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YBC', | |
| municipality: 'Baie-Comeau' | |
| }, | |
| { | |
| name: 'Bella Coola Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'QBC', | |
| municipality: 'Bella Coola' | |
| }, | |
| { | |
| name: 'Uranium City Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YBE', | |
| municipality: 'Uranium City' | |
| }, | |
| { | |
| name: 'Bonnyville Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YBY', | |
| municipality: 'Bonnyville' | |
| }, | |
| { | |
| name: 'CFB Bagotville / Saguenay-Bagotville Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YBG', | |
| municipality: 'La Baie' | |
| }, | |
| { | |
| name: 'Baker Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YBK', | |
| municipality: 'Baker Lake' | |
| }, | |
| { | |
| name: 'Campbell River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YBL', | |
| municipality: 'Campbell River' | |
| }, | |
| { | |
| name: 'Tadoule Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'XTL', | |
| municipality: 'Tadoule Lake' | |
| }, | |
| { | |
| name: 'Brandon Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YBR', | |
| municipality: 'Brandon' | |
| }, | |
| { | |
| name: 'Brochet Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YBT', | |
| municipality: 'Brochet' | |
| }, | |
| { | |
| name: 'Berens River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YBV', | |
| municipality: 'Berens River' | |
| }, | |
| { | |
| name: 'Lourdes-de-Blanc-Sablon Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YBX', | |
| municipality: 'Blanc-Sablon' | |
| }, | |
| { | |
| name: 'Cartwright Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YRF', | |
| municipality: 'Cartwright' | |
| }, | |
| { | |
| name: 'Cambridge Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YCB', | |
| municipality: 'Cambridge Bay' | |
| }, | |
| { | |
| name: 'Cornwall Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YCC', | |
| municipality: 'Cornwall' | |
| }, | |
| { | |
| name: 'Nanaimo Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YCD', | |
| municipality: 'Nanaimo' | |
| }, | |
| { | |
| name: 'Centralia / James T. Field Memorial Aerodrome', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YCE', | |
| municipality: 'Huron Park' | |
| }, | |
| { | |
| name: 'Castlegar/West Kootenay Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YCG', | |
| municipality: 'Castlegar' | |
| }, | |
| { | |
| name: 'Miramichi Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NB', | |
| iata_code: 'YCH', | |
| municipality: 'Miramichi' | |
| }, | |
| { | |
| name: 'Chatham Kent Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'XCM', | |
| municipality: 'Chatham-Kent' | |
| }, | |
| { | |
| name: 'Charlo Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NB', | |
| iata_code: 'YCL', | |
| municipality: 'Charlo' | |
| }, | |
| { | |
| name: 'Cochrane Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YCN', | |
| municipality: 'Cochrane' | |
| }, | |
| { | |
| name: 'Kugluktuk Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YCO', | |
| municipality: 'Kugluktuk' | |
| }, | |
| { | |
| name: 'Chetwynd Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YCQ', | |
| municipality: 'Chetwynd' | |
| }, | |
| { | |
| name: 'Cross Lake (Charlie Sinclair Memorial) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YCR', | |
| municipality: 'Cross Lake' | |
| }, | |
| { | |
| name: 'Chesterfield Inlet Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YCS', | |
| municipality: 'Chesterfield Inlet' | |
| }, | |
| { | |
| name: 'Coronation Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YCT', | |
| municipality: 'Coronation' | |
| }, | |
| { | |
| name: 'Chilliwack Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YCW', | |
| municipality: 'Chilliwack' | |
| }, | |
| { | |
| name: 'Clyde River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YCY', | |
| municipality: 'Clyde River' | |
| }, | |
| { | |
| name: 'Fairmont Hot Springs Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YCZ', | |
| municipality: 'Fairmont Hot Springs' | |
| }, | |
| { | |
| name: 'Dawson City Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YDA', | |
| municipality: 'Dawson City' | |
| }, | |
| { | |
| name: 'Burwash Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YDB', | |
| municipality: 'Burwash Landing' | |
| }, | |
| { | |
| name: 'Deer Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YDF', | |
| municipality: 'Deer Lake' | |
| }, | |
| { | |
| name: 'Dease Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YDL', | |
| municipality: 'Dease Lake' | |
| }, | |
| { | |
| name: 'Ross River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'XRR', | |
| municipality: 'Ross River' | |
| }, | |
| { | |
| name: 'Dauphin Barker Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YDN', | |
| municipality: 'Dauphin' | |
| }, | |
| { | |
| name: 'Dolbeau-Saint-Felicien Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YDO', | |
| municipality: 'Dolbeau-Saint-Felicien' | |
| }, | |
| { | |
| name: 'Nain Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YDP', | |
| municipality: 'Nain' | |
| }, | |
| { | |
| name: 'Dawson Creek Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YDQ', | |
| municipality: 'Dawson Creek' | |
| }, | |
| { | |
| name: 'Edmonton International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YEG', | |
| municipality: 'Edmonton' | |
| }, | |
| { | |
| name: 'Arviat Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YEK', | |
| municipality: 'Arviat' | |
| }, | |
| { | |
| name: 'Elliot Lake Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YEL', | |
| municipality: 'Elliot Lake' | |
| }, | |
| { | |
| name: 'Manitoulin East Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YEM', | |
| municipality: 'Sheguiandah' | |
| }, | |
| { | |
| name: 'Estevan Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YEN', | |
| municipality: 'Estevan' | |
| }, | |
| { | |
| name: 'Fort Severn Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YER', | |
| municipality: 'Fort Severn' | |
| }, | |
| { | |
| name: 'Edson Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YET', | |
| municipality: 'Edson' | |
| }, | |
| { | |
| name: 'Eureka Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YEU', | |
| municipality: 'Eureka' | |
| }, | |
| { | |
| name: 'Inuvik Mike Zubko Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YEV', | |
| municipality: 'Inuvik' | |
| }, | |
| { | |
| name: 'Amos/Magny Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YEY', | |
| municipality: 'Amos' | |
| }, | |
| { | |
| name: 'Fort Albany Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YFA', | |
| municipality: 'Fort Albany' | |
| }, | |
| { | |
| name: 'Iqaluit Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YFB', | |
| municipality: 'Iqaluit' | |
| }, | |
| { | |
| name: 'Fredericton Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NB', | |
| iata_code: 'YFC', | |
| municipality: 'Fredericton' | |
| }, | |
| { | |
| name: 'Forestville Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YFE', | |
| municipality: 'Forestville' | |
| }, | |
| { | |
| name: 'Fort Hope Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YFH', | |
| municipality: 'Fort Hope' | |
| }, | |
| { | |
| name: 'Mont-Tremblant International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YTM', | |
| municipality: 'La Macaza' | |
| }, | |
| { | |
| name: 'Flin Flon Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YFO', | |
| municipality: 'Flin Flon' | |
| }, | |
| { | |
| name: 'Fort Resolution Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YFR', | |
| municipality: 'Fort Resolution' | |
| }, | |
| { | |
| name: 'Fort Simpson Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YFS', | |
| municipality: 'Fort Simpson' | |
| }, | |
| { | |
| name: 'Makkovik Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YMN', | |
| municipality: 'Makkovik' | |
| }, | |
| { | |
| name: 'Texada Gillies Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YGB', | |
| municipality: 'Texada' | |
| }, | |
| { | |
| name: 'Fort Good Hope Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YGH', | |
| municipality: 'Fort Good Hope' | |
| }, | |
| { | |
| name: 'Kingston Norman Rogers Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YGK', | |
| municipality: 'Kingston' | |
| }, | |
| { | |
| name: 'La Grande Rivi\u00e8re Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YGL', | |
| municipality: 'La Grande Rivi\u00e8re' | |
| }, | |
| { | |
| name: 'Gimli Industrial Park Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YGM', | |
| municipality: 'Gimli' | |
| }, | |
| { | |
| name: 'Gods Lake Narrows Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YGO', | |
| municipality: 'Gods Lake Narrows' | |
| }, | |
| { | |
| name: 'Michel-Pouliot Gasp\u00e9 Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YGP', | |
| municipality: 'Gasp\u00e9' | |
| }, | |
| { | |
| name: 'Geraldton Greenstone Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YGQ', | |
| municipality: 'Geraldton' | |
| }, | |
| { | |
| name: '\u00celes-de-la-Madeleine Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YGR', | |
| municipality: 'Les \u00celes-de-la-Madeleine' | |
| }, | |
| { | |
| name: 'Igloolik Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YGT', | |
| municipality: 'Igloolik' | |
| }, | |
| { | |
| name: 'Havre-Saint-Pierre Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YGV', | |
| municipality: 'Havre-Saint-Pierre' | |
| }, | |
| { | |
| name: 'Kuujjuarapik Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YGW', | |
| municipality: 'Kuujjuarapik' | |
| }, | |
| { | |
| name: 'Gillam Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YGX', | |
| municipality: 'Gillam' | |
| }, | |
| { | |
| name: 'Grise Fiord Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YGZ', | |
| municipality: 'Grise Fiord' | |
| }, | |
| { | |
| name: 'Quaqtaq Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YQC', | |
| municipality: 'Quaqtaq' | |
| }, | |
| { | |
| name: 'Hudson Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YHB', | |
| municipality: 'Hudson Bay' | |
| }, | |
| { | |
| name: 'Vancouver Harbour Water Aerodrome', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'CXH', | |
| municipality: 'Vancouver' | |
| }, | |
| { | |
| name: 'Dryden Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YHD', | |
| municipality: 'Dryden' | |
| }, | |
| { | |
| name: 'Hope Airport / FVRD Regional Airpark', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YHE', | |
| municipality: 'Hope' | |
| }, | |
| { | |
| name: 'Hearst Ren\u00e9 Fontaine Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YHF', | |
| municipality: 'Hearst' | |
| }, | |
| { | |
| name: 'Nemiscau Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YNS', | |
| municipality: 'Nemiscau' | |
| }, | |
| { | |
| name: 'Ulukhaktok Holman Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YHI', | |
| municipality: 'Ulukhaktok' | |
| }, | |
| { | |
| name: 'Gjoa Haven Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YHK', | |
| municipality: 'Gjoa Haven' | |
| }, | |
| { | |
| name: 'John C. Munro Hamilton International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YHM', | |
| municipality: 'Hamilton' | |
| }, | |
| { | |
| name: 'Hornepayne Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YHN', | |
| municipality: 'Hornepayne' | |
| }, | |
| { | |
| name: 'Hopedale Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YHO', | |
| municipality: 'Hopedale' | |
| }, | |
| { | |
| name: 'Chevery Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YHR', | |
| municipality: 'Chevery' | |
| }, | |
| { | |
| name: 'Haines Junction Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YHT', | |
| municipality: 'Haines Junction' | |
| }, | |
| { | |
| name: 'Montr\u00e9al / Saint-Hubert Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YHU', | |
| municipality: 'Montr\u00e9al' | |
| }, | |
| { | |
| name: 'Hay River / Merlyn Carter Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YHY', | |
| municipality: 'Hay River' | |
| }, | |
| { | |
| name: 'Halifax / Stanfield International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NS', | |
| iata_code: 'YHZ', | |
| municipality: 'Halifax' | |
| }, | |
| { | |
| name: 'Atikokan Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YIB', | |
| municipality: 'Atikokan' | |
| }, | |
| { | |
| name: 'Digby / Annapolis Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NS', | |
| iata_code: 'YDG', | |
| municipality: 'Digby' | |
| }, | |
| { | |
| name: 'St Augustin Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YIF', | |
| municipality: 'St-Augustin' | |
| }, | |
| { | |
| name: 'Ivujivik Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YIK', | |
| municipality: 'Ivujivik' | |
| }, | |
| { | |
| name: 'Pond Inlet Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YIO', | |
| municipality: 'Pond Inlet' | |
| }, | |
| { | |
| name: 'Island Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YIV', | |
| municipality: 'Island Lake' | |
| }, | |
| { | |
| name: 'Jasper Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YJA', | |
| municipality: 'Jasper' | |
| }, | |
| { | |
| name: 'Fort Liard Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YJF', | |
| municipality: 'Fort Liard' | |
| }, | |
| { | |
| name: 'St Jean Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YJN', | |
| municipality: 'St Jean' | |
| }, | |
| { | |
| name: 'Dymond Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YJT', | |
| municipality: 'Stephenville' | |
| }, | |
| { | |
| name: 'Kamloops John Moose Fulton Field Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YKA', | |
| municipality: 'Kamloops' | |
| }, | |
| { | |
| name: 'Collins Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YKC', | |
| municipality: 'Collins Bay' | |
| }, | |
| { | |
| name: 'Aklavik/Freddie Carmichael Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'LAK', | |
| municipality: 'Aklavik' | |
| }, | |
| { | |
| name: 'Region of Waterloo International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YKF', | |
| municipality: 'Breslau' | |
| }, | |
| { | |
| name: 'Kangiqsujuaq (Wakeham Bay) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YWB', | |
| municipality: 'Kangiqsujuaq' | |
| }, | |
| { | |
| name: 'Key Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YKJ', | |
| municipality: 'Key Lake' | |
| }, | |
| { | |
| name: 'Schefferville Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YKL', | |
| municipality: 'Schefferville' | |
| }, | |
| { | |
| name: 'Kincardine Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YKD', | |
| municipality: 'Kincardine' | |
| }, | |
| { | |
| name: 'Akulivik Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'AKV', | |
| municipality: 'Akulivik' | |
| }, | |
| { | |
| name: 'Waskaganish Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YKQ', | |
| municipality: 'Waskaganish' | |
| }, | |
| { | |
| name: 'Kirkland Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YKX', | |
| municipality: 'Kirkland Lake' | |
| }, | |
| { | |
| name: 'Kindersley Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YKY', | |
| municipality: 'Kindersley' | |
| }, | |
| { | |
| name: 'Aupaluk Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YPJ', | |
| municipality: 'Aupaluk' | |
| }, | |
| { | |
| name: 'Lac La Biche Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YLB', | |
| municipality: 'Lac La Biche' | |
| }, | |
| { | |
| name: 'Kimmirut Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YLC', | |
| municipality: 'Kimmirut' | |
| }, | |
| { | |
| name: 'Chapleau Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YLD', | |
| municipality: 'Chapleau' | |
| }, | |
| { | |
| name: 'Lansdowne House Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YLH', | |
| municipality: 'Lansdowne House' | |
| }, | |
| { | |
| name: 'Meadow Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YLJ', | |
| municipality: 'Meadow Lake' | |
| }, | |
| { | |
| name: "Lutselk'e Airport", | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YSG', | |
| municipality: "Lutselk'e" | |
| }, | |
| { | |
| name: 'Lloydminster Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YLL', | |
| municipality: 'Lloydminster' | |
| }, | |
| { | |
| name: 'La Tuque Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YLQ', | |
| municipality: 'La Tuque' | |
| }, | |
| { | |
| name: 'Leaf Rapids Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YLR', | |
| municipality: 'Leaf Rapids' | |
| }, | |
| { | |
| name: 'Barrie-Lake Simcoe Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YLK', | |
| municipality: 'Barrie' | |
| }, | |
| { | |
| name: 'Alert Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YLT', | |
| municipality: 'Alert' | |
| }, | |
| { | |
| name: 'Kangiqsualujjuaq (Georges River) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'XGR', | |
| municipality: 'Kangiqsualujjuaq' | |
| }, | |
| { | |
| name: 'Kelowna International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YLW', | |
| municipality: 'Kelowna' | |
| }, | |
| { | |
| name: 'Chatham Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CYM', | |
| municipality: 'Chatham' | |
| }, | |
| { | |
| name: 'Mayo Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YMA', | |
| municipality: 'Mayo' | |
| }, | |
| { | |
| name: 'Matane Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YME', | |
| municipality: 'Matane' | |
| }, | |
| { | |
| name: 'Manitouwadge Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YMG', | |
| municipality: 'Manitouwadge' | |
| }, | |
| { | |
| name: "Mary's Harbour Airport", | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YMH', | |
| municipality: "Mary's Harbour" | |
| }, | |
| { | |
| name: 'Moose Jaw Air Vice Marshal C. M. McEwen Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YMJ', | |
| municipality: 'Moose Jaw' | |
| }, | |
| { | |
| name: 'Charlevoix Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YML', | |
| municipality: 'Charlevoix' | |
| }, | |
| { | |
| name: 'Fort McMurray Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YMM', | |
| municipality: 'Fort McMurray' | |
| }, | |
| { | |
| name: 'Moosonee Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YMO', | |
| municipality: 'Moosonee' | |
| }, | |
| { | |
| name: 'Chapais Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YMT', | |
| municipality: 'Chibougamau' | |
| }, | |
| { | |
| name: 'Umiujaq Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YUD', | |
| municipality: 'Umiujaq' | |
| }, | |
| { | |
| name: 'Maniwaki Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YMW', | |
| municipality: 'Messines' | |
| }, | |
| { | |
| name: 'Montreal International (Mirabel) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YMX', | |
| municipality: 'Montr\u00e9al' | |
| }, | |
| { | |
| name: 'Natashquan Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YNA', | |
| municipality: 'Natashquan' | |
| }, | |
| { | |
| name: 'Wemindji Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YNC', | |
| municipality: 'Wemindji' | |
| }, | |
| { | |
| name: 'Ottawa / Gatineau Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YND', | |
| municipality: 'Gatineau' | |
| }, | |
| { | |
| name: 'Norway House Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YNE', | |
| municipality: 'Norway House' | |
| }, | |
| { | |
| name: "Hudson's Hope Airport", | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YNH', | |
| municipality: "Hudson's Hope" | |
| }, | |
| { | |
| name: 'Langley Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YLY', | |
| municipality: 'Langley' | |
| }, | |
| { | |
| name: 'Points North Landing Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YNL', | |
| municipality: 'Points North Landing' | |
| }, | |
| { | |
| name: 'Matagami Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YNM', | |
| municipality: 'Matagami' | |
| }, | |
| { | |
| name: 'Fort Mackay / Horizon Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'HZP', | |
| municipality: 'Fort Mackay' | |
| }, | |
| { | |
| name: 'Ekati Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YOA', | |
| municipality: 'Ekati' | |
| }, | |
| { | |
| name: 'Old Crow Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YOC', | |
| municipality: 'Old Crow' | |
| }, | |
| { | |
| name: 'CFB Cold Lake', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YOD', | |
| municipality: 'Cold Lake' | |
| }, | |
| { | |
| name: 'Oxford House Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YOH', | |
| municipality: 'Oxford House' | |
| }, | |
| { | |
| name: 'High Level Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YOJ', | |
| municipality: 'High Level' | |
| }, | |
| { | |
| name: 'Oshawa Executive Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YOO', | |
| municipality: 'Oshawa' | |
| }, | |
| { | |
| name: 'Rainbow Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YOP', | |
| municipality: 'Rainbow Lake' | |
| }, | |
| { | |
| name: 'Owen Sound / Billy Bishop Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YOS', | |
| municipality: 'Owen Sound' | |
| }, | |
| { | |
| name: 'Ottawa Macdonald-Cartier International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YOW', | |
| municipality: 'Ottawa' | |
| }, | |
| { | |
| name: 'Prince Albert Glass Field', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YPA', | |
| municipality: 'Prince Albert' | |
| }, | |
| { | |
| name: 'Paulatuk (Nora Aliqatchialuk Ruben) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YPC', | |
| municipality: 'Paulatuk' | |
| }, | |
| { | |
| name: 'Port Hawkesbury Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NS', | |
| iata_code: 'YPS', | |
| municipality: 'Port Hawkesbury' | |
| }, | |
| { | |
| name: 'Peace River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YPE', | |
| municipality: 'Peace River' | |
| }, | |
| { | |
| name: 'Portage-la-Prairie / Southport Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YPG', | |
| municipality: 'Portage la Prairie' | |
| }, | |
| { | |
| name: 'Inukjuak Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YPH', | |
| municipality: 'Inukjuak' | |
| }, | |
| { | |
| name: 'Pickle Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YPL', | |
| municipality: 'Pickle Lake' | |
| }, | |
| { | |
| name: 'Pikangikum Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YPM', | |
| municipality: 'Pikangikum' | |
| }, | |
| { | |
| name: 'Port-Menier Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YPN', | |
| municipality: 'Port-Menier' | |
| }, | |
| { | |
| name: 'Peawanuck Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YPO', | |
| municipality: 'Peawanuck' | |
| }, | |
| { | |
| name: 'Peterborough Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YPQ', | |
| municipality: 'Peterborough' | |
| }, | |
| { | |
| name: 'Prince Rupert Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YPR', | |
| municipality: 'Prince Rupert' | |
| }, | |
| { | |
| name: 'Powell River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YPW', | |
| municipality: 'Powell River' | |
| }, | |
| { | |
| name: 'Puvirnituq Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YPX', | |
| municipality: 'Puvirnituq' | |
| }, | |
| { | |
| name: 'Fort Chipewyan Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YPY', | |
| municipality: 'Fort Chipewyan' | |
| }, | |
| { | |
| name: 'Burns Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YPZ', | |
| municipality: 'Burns Lake' | |
| }, | |
| { | |
| name: 'Muskoka Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YQA', | |
| municipality: 'Gravenhurst' | |
| }, | |
| { | |
| name: 'Quebec Jean Lesage International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YQB', | |
| municipality: 'Quebec' | |
| }, | |
| { | |
| name: 'The Pas Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YQD', | |
| municipality: 'The Pas' | |
| }, | |
| { | |
| name: 'Red Deer Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YQF', | |
| municipality: 'Springbrook' | |
| }, | |
| { | |
| name: 'Windsor Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YQG', | |
| municipality: 'Windsor' | |
| }, | |
| { | |
| name: 'Watson Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YQH', | |
| municipality: 'Watson Lake' | |
| }, | |
| { | |
| name: 'Yarmouth Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NS', | |
| iata_code: 'YQI', | |
| municipality: 'Yarmouth' | |
| }, | |
| { | |
| name: 'Kenora Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YQK', | |
| municipality: 'Kenora' | |
| }, | |
| { | |
| name: 'Lethbridge County Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YQL', | |
| municipality: 'Lethbridge' | |
| }, | |
| { | |
| name: 'Greater Moncton Rom\u00e9o LeBlanc International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NB', | |
| iata_code: 'YQM', | |
| municipality: 'Moncton' | |
| }, | |
| { | |
| name: 'Nakina Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YQN', | |
| municipality: 'Nakina' | |
| }, | |
| { | |
| name: 'Comox Valley Airport / CFB Comox', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YQQ', | |
| municipality: 'Comox' | |
| }, | |
| { | |
| name: 'Regina International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YQR', | |
| municipality: 'Regina' | |
| }, | |
| { | |
| name: 'St Thomas Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YQS', | |
| municipality: 'St Thomas' | |
| }, | |
| { | |
| name: 'Thunder Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YQT', | |
| municipality: 'Thunder Bay' | |
| }, | |
| { | |
| name: 'Grande Prairie Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YQU', | |
| municipality: 'Grande Prairie' | |
| }, | |
| { | |
| name: 'Yorkton Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YQV', | |
| municipality: 'Yorkton' | |
| }, | |
| { | |
| name: 'North Battleford Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YQW', | |
| municipality: 'North Battleford' | |
| }, | |
| { | |
| name: 'Gander International Airport / CFB Gander', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YQX', | |
| municipality: 'Gander' | |
| }, | |
| { | |
| name: 'Sydney / J.A. Douglas McCurdy Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NS', | |
| iata_code: 'YQY', | |
| municipality: 'Sydney' | |
| }, | |
| { | |
| name: 'Quesnel Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YQZ', | |
| municipality: 'Quesnel' | |
| }, | |
| { | |
| name: 'Rae Lakes Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YRA', | |
| municipality: 'Gam\u00e8t\u00ec' | |
| }, | |
| { | |
| name: 'Resolute Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YRB', | |
| municipality: 'Resolute Bay' | |
| }, | |
| { | |
| name: 'Rivi\u00e8re-du-Loup Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YRI', | |
| municipality: 'Rivi\u00e8re-du-Loup' | |
| }, | |
| { | |
| name: 'Roberval Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YRJ', | |
| municipality: 'Roberval' | |
| }, | |
| { | |
| name: 'Red Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YRL', | |
| municipality: 'Red Lake' | |
| }, | |
| { | |
| name: 'Rocky Mountain House Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YRM', | |
| municipality: 'Rocky Mountain House' | |
| }, | |
| { | |
| name: 'Ottawa / Rockcliffe Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YRO', | |
| municipality: 'Ottawa' | |
| }, | |
| { | |
| name: 'Trois-Rivi\u00e8res Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YRQ', | |
| municipality: 'Trois-Rivi\u00e8res' | |
| }, | |
| { | |
| name: 'Red Sucker Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YRS', | |
| municipality: 'Red Sucker Lake' | |
| }, | |
| { | |
| name: 'Rankin Inlet Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YRT', | |
| municipality: 'Rankin Inlet' | |
| }, | |
| { | |
| name: 'Revelstoke Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YRV', | |
| municipality: 'Revelstoke' | |
| }, | |
| { | |
| name: 'Sudbury Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YSB', | |
| municipality: 'Sudbury' | |
| }, | |
| { | |
| name: 'Sherbrooke Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YSC', | |
| municipality: 'Sherbrooke' | |
| }, | |
| { | |
| name: 'Canadian Forces Base Suffield Heliport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YSD', | |
| municipality: 'Ralston' | |
| }, | |
| { | |
| name: 'Squamish Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YSE', | |
| municipality: 'Squamish' | |
| }, | |
| { | |
| name: 'Stony Rapids Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YSF', | |
| municipality: 'Stony Rapids' | |
| }, | |
| { | |
| name: 'Smiths Falls-Montague (Russ Beach) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YSH', | |
| municipality: 'Smiths Falls' | |
| }, | |
| { | |
| name: 'Saint John Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NB', | |
| iata_code: 'YSJ', | |
| municipality: 'Saint John' | |
| }, | |
| { | |
| name: 'Sanikiluaq Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YSK', | |
| municipality: 'Sanikiluaq' | |
| }, | |
| { | |
| name: 'Saint-L\u00e9onard Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NB', | |
| iata_code: 'YSL', | |
| municipality: 'Saint-L\u00e9onard' | |
| }, | |
| { | |
| name: 'Fort Smith Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YSM', | |
| municipality: 'Fort Smith' | |
| }, | |
| { | |
| name: 'Niagara District Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YCM', | |
| municipality: 'Niagara-on-the-Lake' | |
| }, | |
| { | |
| name: 'Marathon Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YSP', | |
| municipality: 'Marathon' | |
| }, | |
| { | |
| name: 'St. Theresa Point Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YST', | |
| municipality: 'St. Theresa Point' | |
| }, | |
| { | |
| name: 'Summerside Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-PE', | |
| iata_code: 'YSU', | |
| municipality: 'Slemon Park' | |
| }, | |
| { | |
| name: 'Sachs Harbour (David Nasogaluak Jr. Saaryuaq) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YSY', | |
| municipality: 'Sachs Harbour' | |
| }, | |
| { | |
| name: 'Pembroke Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YTA', | |
| municipality: 'Pembroke' | |
| }, | |
| { | |
| name: 'Cape Dorset Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YTE', | |
| municipality: 'Kinngait' | |
| }, | |
| { | |
| name: 'Alma Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YTF', | |
| municipality: 'Alma' | |
| }, | |
| { | |
| name: 'Thompson Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YTH', | |
| municipality: 'Thompson' | |
| }, | |
| { | |
| name: 'Big Trout Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YTL', | |
| municipality: 'Big Trout Lake' | |
| }, | |
| { | |
| name: 'Tasiujaq Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YTQ', | |
| municipality: 'Tasiujaq' | |
| }, | |
| { | |
| name: 'CFB Trenton', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YTR', | |
| municipality: 'Trenton' | |
| }, | |
| { | |
| name: 'Timmins/Victor M. Power', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YTS', | |
| municipality: 'Timmins' | |
| }, | |
| { | |
| name: 'Billy Bishop Toronto City Centre Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YTZ', | |
| municipality: 'Toronto' | |
| }, | |
| { | |
| name: 'Tuktoyaktuk / James Gruben Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YUB', | |
| municipality: 'Tuktoyaktuk' | |
| }, | |
| { | |
| name: 'Montreal / Pierre Elliott Trudeau International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YUL', | |
| municipality: 'Montr\u00e9al' | |
| }, | |
| { | |
| name: 'Naujaat Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YUT', | |
| municipality: 'Repulse Bay' | |
| }, | |
| { | |
| name: 'Hall Beach Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YUX', | |
| municipality: 'Sanirajak' | |
| }, | |
| { | |
| name: 'Rouyn Noranda Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YUY', | |
| municipality: 'Rouyn-Noranda' | |
| }, | |
| { | |
| name: 'Bonaventure Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YVB', | |
| municipality: 'Bonaventure' | |
| }, | |
| { | |
| name: 'La Ronge Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YVC', | |
| municipality: 'La Ronge' | |
| }, | |
| { | |
| name: 'Vermilion Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YVG', | |
| municipality: 'Vermilion' | |
| }, | |
| { | |
| name: 'Vernon Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YVE', | |
| municipality: 'Vernon' | |
| }, | |
| { | |
| name: 'Tommy Kochon Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YCK', | |
| municipality: 'Colville Lake' | |
| }, | |
| { | |
| name: 'Qikiqtarjuaq Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YVM', | |
| municipality: 'Qikiqtarjuaq' | |
| }, | |
| { | |
| name: "Val-d'Or Airport", | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YVO', | |
| municipality: "Val-d'Or" | |
| }, | |
| { | |
| name: 'Kuujjuaq Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YVP', | |
| municipality: 'Kuujjuaq' | |
| }, | |
| { | |
| name: 'Norman Wells Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YVQ', | |
| municipality: 'Norman Wells' | |
| }, | |
| { | |
| name: 'Vancouver International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YVR', | |
| municipality: 'Vancouver' | |
| }, | |
| { | |
| name: 'Buffalo Narrows Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YVT', | |
| municipality: 'Buffalo Narrows' | |
| }, | |
| { | |
| name: 'Wiarton Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YVV', | |
| municipality: 'Wiarton' | |
| }, | |
| { | |
| name: 'Deer Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YVZ', | |
| municipality: 'Deer Lake' | |
| }, | |
| { | |
| name: 'Petawawa Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YWA', | |
| municipality: 'Petawawa' | |
| }, | |
| { | |
| name: 'Winnipeg / James Armstrong Richardson International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YWG', | |
| municipality: 'Winnipeg' | |
| }, | |
| { | |
| name: 'Victoria Harbour Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YWH', | |
| municipality: 'Victoria' | |
| }, | |
| { | |
| name: 'D\u00e9line Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YWJ', | |
| municipality: 'D\u00e9line' | |
| }, | |
| { | |
| name: 'Wabush Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YWK', | |
| municipality: 'Wabush' | |
| }, | |
| { | |
| name: 'Williams Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YWL', | |
| municipality: 'Williams Lake' | |
| }, | |
| { | |
| name: 'Webequie Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YWP', | |
| municipality: 'Webequie' | |
| }, | |
| { | |
| name: 'Wrigley Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YWY', | |
| municipality: 'Wrigley' | |
| }, | |
| { | |
| name: 'Cranbrook/Canadian Rockies International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YXC', | |
| municipality: 'Cranbrook' | |
| }, | |
| { | |
| name: 'Saskatoon John G. Diefenbaker International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YXE', | |
| municipality: 'Saskatoon' | |
| }, | |
| { | |
| name: 'Medicine Hat Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YXH', | |
| municipality: 'Medicine Hat' | |
| }, | |
| { | |
| name: 'Fort St John / North Peace Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YXJ', | |
| municipality: 'Fort Saint John' | |
| }, | |
| { | |
| name: 'Rimouski Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YXK', | |
| municipality: 'Rimouski' | |
| }, | |
| { | |
| name: 'Sioux Lookout Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YXL', | |
| municipality: 'Sioux Lookout' | |
| }, | |
| { | |
| name: 'Whale Cove Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YXN', | |
| municipality: 'Whale Cove' | |
| }, | |
| { | |
| name: 'Pangnirtung Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YXP', | |
| municipality: 'Pangnirtung' | |
| }, | |
| { | |
| name: 'Beaver Creek Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YXQ', | |
| municipality: 'Beaver Creek' | |
| }, | |
| { | |
| name: 'Earlton (Timiskaming Regional) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YXR', | |
| municipality: 'Earlton' | |
| }, | |
| { | |
| name: 'Prince George Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YXS', | |
| municipality: 'Prince George' | |
| }, | |
| { | |
| name: 'Northwest Regional Airport Terrace-Kitimat', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YXT', | |
| municipality: 'Terrace' | |
| }, | |
| { | |
| name: 'London Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YXU', | |
| municipality: 'London' | |
| }, | |
| { | |
| name: 'Abbotsford International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YXX', | |
| municipality: 'Abbotsford' | |
| }, | |
| { | |
| name: 'Whitehorse / Erik Nielsen International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YXY', | |
| municipality: 'Whitehorse' | |
| }, | |
| { | |
| name: 'Wawa Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YXZ', | |
| municipality: 'Wawa' | |
| }, | |
| { | |
| name: 'North Bay Jack Garland Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YYB', | |
| municipality: 'North Bay' | |
| }, | |
| { | |
| name: 'Calgary International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YYC', | |
| municipality: 'Calgary' | |
| }, | |
| { | |
| name: 'Smithers Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YYD', | |
| municipality: 'Smithers' | |
| }, | |
| { | |
| name: 'Fort Nelson Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YYE', | |
| municipality: 'Fort Nelson' | |
| }, | |
| { | |
| name: 'Penticton Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YYF', | |
| municipality: 'Penticton' | |
| }, | |
| { | |
| name: 'Charlottetown Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-PE', | |
| iata_code: 'YYG', | |
| municipality: 'Charlottetown' | |
| }, | |
| { | |
| name: 'Taloyoak Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YYH', | |
| municipality: 'Taloyoak' | |
| }, | |
| { | |
| name: 'Victoria International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YYJ', | |
| municipality: 'Victoria' | |
| }, | |
| { | |
| name: 'Lynn Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YYL', | |
| municipality: 'Lynn Lake' | |
| }, | |
| { | |
| name: 'Cowley Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YYM', | |
| municipality: 'Cowley' | |
| }, | |
| { | |
| name: 'Swift Current Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'YYN', | |
| municipality: 'Swift Current' | |
| }, | |
| { | |
| name: 'Churchill Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YYQ', | |
| municipality: 'Churchill' | |
| }, | |
| { | |
| name: 'Goose Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YYR', | |
| municipality: 'Goose Bay' | |
| }, | |
| { | |
| name: "St. John's International Airport", | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'YYT', | |
| municipality: "St. John's" | |
| }, | |
| { | |
| name: 'Kapuskasing Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YYU', | |
| municipality: 'Kapuskasing' | |
| }, | |
| { | |
| name: 'Armstrong Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YYW', | |
| municipality: 'Armstrong' | |
| }, | |
| { | |
| name: 'Mont Joli Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YYY', | |
| municipality: 'Mont-Joli' | |
| }, | |
| { | |
| name: 'Toronto Lester B. Pearson International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YYZ', | |
| municipality: 'Toronto' | |
| }, | |
| { | |
| name: 'Gore Bay Manitoulin Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YZE', | |
| municipality: 'Gore Bay' | |
| }, | |
| { | |
| name: 'Yellowknife International Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'YZF', | |
| municipality: 'Yellowknife' | |
| }, | |
| { | |
| name: 'Salluit Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YZG', | |
| municipality: 'Salluit' | |
| }, | |
| { | |
| name: 'Slave Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YZH', | |
| municipality: 'Slave Lake' | |
| }, | |
| { | |
| name: 'Sandspit Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YZP', | |
| municipality: 'Sandspit' | |
| }, | |
| { | |
| name: 'Chris Hadfield Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'YZR', | |
| municipality: 'Sarnia' | |
| }, | |
| { | |
| name: 'Coral Harbour Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NU', | |
| iata_code: 'YZS', | |
| municipality: 'Coral Harbour' | |
| }, | |
| { | |
| name: 'Port Hardy Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YZT', | |
| municipality: 'Port Hardy' | |
| }, | |
| { | |
| name: 'Whitecourt Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'YZU', | |
| municipality: 'Whitecourt' | |
| }, | |
| { | |
| name: 'Sept-\u00celes Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'YZV', | |
| municipality: 'Sept-\u00celes' | |
| }, | |
| { | |
| name: 'Teslin Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'YZW', | |
| municipality: 'Teslin' | |
| }, | |
| { | |
| name: 'CFB Greenwood', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NS', | |
| iata_code: 'YZX', | |
| municipality: 'Greenwood' | |
| }, | |
| { | |
| name: 'York Landing Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'ZAC', | |
| municipality: 'York Landing' | |
| }, | |
| { | |
| name: 'Shuswap Regional Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YSN', | |
| municipality: 'Salmon Arm' | |
| }, | |
| { | |
| name: 'Boundary Bay Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'YDT', | |
| municipality: 'Delta' | |
| }, | |
| { | |
| name: 'Ilford Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'ILF', | |
| municipality: 'Ilford' | |
| }, | |
| { | |
| name: 'Bathurst Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NB', | |
| iata_code: 'ZBF', | |
| municipality: 'South Tetagouche' | |
| }, | |
| { | |
| name: 'Bromont (Roland D\u00e9sourdy) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'ZBM', | |
| municipality: 'Bromont' | |
| }, | |
| { | |
| name: 'Kelsey Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'KES', | |
| municipality: 'Kelsey' | |
| }, | |
| { | |
| name: 'Eastmain River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-QC', | |
| iata_code: 'ZEM', | |
| municipality: 'Eastmain River' | |
| }, | |
| { | |
| name: 'Faro Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-YT', | |
| iata_code: 'ZFA', | |
| municipality: 'Faro' | |
| }, | |
| { | |
| name: 'Fond-du-Lac Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'ZFD', | |
| municipality: 'Fond-du-Lac' | |
| }, | |
| { | |
| name: 'Pukatawagan Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'XPK', | |
| municipality: 'Pukatawagan' | |
| }, | |
| { | |
| name: 'Fort Mcpherson Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'ZFM', | |
| municipality: 'Fort Mcpherson' | |
| }, | |
| { | |
| name: 'Tulita Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NT', | |
| iata_code: 'ZFN', | |
| municipality: 'Tulita' | |
| }, | |
| { | |
| name: 'Grand Forks Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZGF', | |
| municipality: 'Grand Forks' | |
| }, | |
| { | |
| name: 'Gods River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'ZGI', | |
| municipality: 'Gods River' | |
| }, | |
| { | |
| name: 'Little Grand Rapids Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'ZGR', | |
| municipality: 'Little Grand Rapids' | |
| }, | |
| { | |
| name: 'High Prairie Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'ZHP', | |
| municipality: 'High Prairie' | |
| }, | |
| { | |
| name: 'Coraz\u00f3n de Jes\u00fas Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PS-GY', | |
| iata_code: 'CZJ', | |
| municipality: 'Tupile' | |
| }, | |
| { | |
| name: 'Jenpeg Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'ZJG', | |
| municipality: 'Jenpeg' | |
| }, | |
| { | |
| name: 'Swan River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'ZJN', | |
| municipality: 'Swan River' | |
| }, | |
| { | |
| name: 'Cascade Locks State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'CZK', | |
| municipality: 'Cascade Locks' | |
| }, | |
| { | |
| name: 'Kashechewan Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'ZKE', | |
| municipality: 'Kashechewan' | |
| }, | |
| { | |
| name: 'Thicket Portage Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YTD', | |
| municipality: 'Thicket Portage' | |
| }, | |
| { | |
| name: 'Muskrat Dam Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'MSA', | |
| municipality: 'Muskrat Dam' | |
| }, | |
| { | |
| name: 'South Cariboo Region / 108 Mile Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZMH', | |
| municipality: '108 Mile' | |
| }, | |
| { | |
| name: 'Pikwitonei Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'PIW', | |
| municipality: 'Pikwitonei' | |
| }, | |
| { | |
| name: 'Masset Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZMT', | |
| municipality: 'Masset' | |
| }, | |
| { | |
| name: 'Chisana Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CZN', | |
| municipality: 'Chisana' | |
| }, | |
| { | |
| name: 'Poplar River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'XPP', | |
| municipality: 'Poplar River' | |
| }, | |
| { | |
| name: 'Chistochina Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CZO', | |
| municipality: 'Chistochina' | |
| }, | |
| { | |
| name: 'Sachigo Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'ZPB', | |
| municipality: 'Sachigo Lake' | |
| }, | |
| { | |
| name: 'Pincher Creek Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-AB', | |
| iata_code: 'WPC', | |
| municipality: 'Pincher Creek' | |
| }, | |
| { | |
| name: 'Pinehouse Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'ZPO', | |
| municipality: 'Pinehouse Lake' | |
| }, | |
| { | |
| name: 'Round Lake (Weagamow Lake) Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'ZRJ', | |
| municipality: 'Round Lake' | |
| }, | |
| { | |
| name: 'Sandy Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'ZSJ', | |
| municipality: 'Sandy Lake' | |
| }, | |
| { | |
| name: 'South Indian Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'XSI', | |
| municipality: 'South Indian Lake' | |
| }, | |
| { | |
| name: 'Stewart Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZST', | |
| municipality: 'Stewart' | |
| }, | |
| { | |
| name: 'Prince Rupert/Seal Cove Seaplane Base', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-BC', | |
| iata_code: 'ZSW', | |
| municipality: 'Prince Rupert' | |
| }, | |
| { | |
| name: 'Bloodvein River Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'YDV', | |
| municipality: 'Bloodvein River' | |
| }, | |
| { | |
| name: 'Shamattawa Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'ZTM', | |
| municipality: 'Shamattawa' | |
| }, | |
| { | |
| name: 'Ignace Municipal Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-ON', | |
| iata_code: 'ZUC', | |
| municipality: 'Ignace' | |
| }, | |
| { | |
| name: 'Churchill Falls Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-NL', | |
| iata_code: 'ZUM', | |
| municipality: 'Churchill Falls' | |
| }, | |
| { | |
| name: 'Lac Brochet Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-MB', | |
| iata_code: 'XLB', | |
| municipality: 'Lac Brochet' | |
| }, | |
| { | |
| name: 'Wollaston Lake Airport', | |
| iso_country: 'CA', | |
| country_name: 'Canada', | |
| iso_region: 'CA-SK', | |
| iata_code: 'ZWL', | |
| municipality: 'Wollaston Lake' | |
| }, | |
| { | |
| name: 'Canandaigua Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'IUA', | |
| municipality: 'Ontario County IDA' | |
| }, | |
| { | |
| name: 'Delta Junction Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'DJN', | |
| municipality: 'Delta Junction' | |
| }, | |
| { | |
| name: 'Mostaganem Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-27', | |
| iata_code: 'MQV', | |
| municipality: 'Sayada' | |
| }, | |
| { | |
| name: 'Blida Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-09', | |
| iata_code: 'QLD', | |
| municipality: 'Blida' | |
| }, | |
| { | |
| name: 'Bou Saada Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-28', | |
| iata_code: 'BUJ', | |
| municipality: 'Ouled Sidi Brahim' | |
| }, | |
| { | |
| name: 'Soummam\u2013Abane Ramdane Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-06', | |
| iata_code: 'BJA', | |
| municipality: 'B\u00e9ja\u00efa' | |
| }, | |
| { | |
| name: 'Houari Boumediene Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-16', | |
| iata_code: 'ALG', | |
| municipality: 'Algiers' | |
| }, | |
| { | |
| name: 'Djanet Inedbirene Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-56', | |
| iata_code: 'DJG', | |
| municipality: 'Djanet' | |
| }, | |
| { | |
| name: 'Illizi Takhamalt Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-33', | |
| iata_code: 'VVZ', | |
| municipality: 'Illizi' | |
| }, | |
| { | |
| name: 'Ain Arnat Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-19', | |
| iata_code: 'QSF', | |
| municipality: 'S\u00e9tif' | |
| }, | |
| { | |
| name: 'Aguenar \u2013 Hadj Bey Akhamok Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-11', | |
| iata_code: 'TMR', | |
| municipality: 'Tamanrasset' | |
| }, | |
| { | |
| name: 'Jijel Ferhat Abbas Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-18', | |
| iata_code: 'GJL', | |
| municipality: 'Tahir' | |
| }, | |
| { | |
| name: 'Mecheria Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-45', | |
| iata_code: 'MZW', | |
| municipality: 'Mecheria' | |
| }, | |
| { | |
| name: 'Annaba Rabah Bitat Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-23', | |
| iata_code: 'AAE', | |
| municipality: 'Annaba' | |
| }, | |
| { | |
| name: 'Mohamed Boudiaf International Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-25', | |
| iata_code: 'CZL', | |
| municipality: 'Constantine' | |
| }, | |
| { | |
| name: 'Oum El Bouaghi Air Base', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-04', | |
| iata_code: 'QMH', | |
| municipality: 'Oum El Bouaghi' | |
| }, | |
| { | |
| name: 'Cheikh Larbi T\u00e9bessi Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-12', | |
| iata_code: 'TEE', | |
| municipality: 'T\u00e9bessi' | |
| }, | |
| { | |
| name: 'Batna Mostefa Ben Boulaid Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-05', | |
| iata_code: 'BLJ', | |
| municipality: 'Batna' | |
| }, | |
| { | |
| name: 'Daup Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'DAF', | |
| municipality: '' | |
| }, | |
| { | |
| name: "Hassi R'Mel Airport", | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-03', | |
| iata_code: 'HRM', | |
| municipality: "Hassi R'Mel" | |
| }, | |
| { | |
| name: 'Tsletsi Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-17', | |
| iata_code: 'QDJ', | |
| municipality: 'Djelfa' | |
| }, | |
| { | |
| name: 'Dathina Airport', | |
| iso_country: 'YE', | |
| country_name: 'Yemen', | |
| iso_region: 'YE-AB', | |
| iata_code: 'DAH', | |
| municipality: 'Dathina' | |
| }, | |
| { | |
| name: 'Dabo Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'DAO', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Abdelhafid Boussouf Bou Chekif Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-14', | |
| iata_code: 'TID', | |
| municipality: 'Tiaret' | |
| }, | |
| { | |
| name: 'Tindouf Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-37', | |
| iata_code: 'TIN', | |
| municipality: 'Tindouf' | |
| }, | |
| { | |
| name: 'Chlef Aboubakr Belkaid International Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-02', | |
| iata_code: 'CFK', | |
| municipality: 'Chlef' | |
| }, | |
| { | |
| name: 'Oran Tafraoui Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-31', | |
| iata_code: 'TAF', | |
| municipality: 'Tafraoui' | |
| }, | |
| { | |
| name: 'Zenata \u2013 Messali El Hadj Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-13', | |
| iata_code: 'TLM', | |
| municipality: 'Zenata' | |
| }, | |
| { | |
| name: 'Oran Es-S\u00e9nia (Ahmed Ben Bella) International Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-31', | |
| iata_code: 'ORN', | |
| municipality: 'Es-S\u00e9nia' | |
| }, | |
| { | |
| name: 'B\u00e9char Boudghene Ben Ali Lotfi Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-08', | |
| iata_code: 'CBH', | |
| municipality: 'B\u00e9char' | |
| }, | |
| { | |
| name: 'Sidi Bel Abbes Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-22', | |
| iata_code: 'BFW', | |
| municipality: 'Sidi Bel Abb\u00e8s' | |
| }, | |
| { | |
| name: 'Ghriss Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-29', | |
| iata_code: 'MUW', | |
| municipality: 'Ghriss' | |
| }, | |
| { | |
| name: 'El Bayadh Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-32', | |
| iata_code: 'EBH', | |
| municipality: 'El Bayadh' | |
| }, | |
| { | |
| name: 'In Guezzam Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-58', | |
| iata_code: 'INF', | |
| municipality: 'In Guezzam' | |
| }, | |
| { | |
| name: 'Bordj Badji Mokhtar Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-52', | |
| iata_code: 'BMW', | |
| municipality: 'Bordj Badji Mokhtar' | |
| }, | |
| { | |
| name: 'Touat Cheikh Sidi Mohamed Belkebir Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-01', | |
| iata_code: 'AZR', | |
| municipality: 'Adrar' | |
| }, | |
| { | |
| name: 'Biskra - Mohamed Khider Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-07', | |
| iata_code: 'BSK', | |
| municipality: 'Biskra' | |
| }, | |
| { | |
| name: 'El Golea Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-50', | |
| iata_code: 'ELG', | |
| municipality: 'El Menia' | |
| }, | |
| { | |
| name: 'Noum\u00e9rat - Moufdi Zakaria Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-47', | |
| iata_code: 'GHA', | |
| municipality: 'El Atteuf' | |
| }, | |
| { | |
| name: 'Hassi Messaoud-Oued Irara Krim Belkacem Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-30', | |
| iata_code: 'HME', | |
| municipality: 'Hassi Messaoud' | |
| }, | |
| { | |
| name: 'In Salah Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-57', | |
| iata_code: 'INZ', | |
| municipality: 'In Salah' | |
| }, | |
| { | |
| name: 'Touggourt Sidi Madhi Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-55', | |
| iata_code: 'TGR', | |
| municipality: 'Touggourt' | |
| }, | |
| { | |
| name: 'Laghouat - Molay Ahmed Medeghri Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-03', | |
| iata_code: 'LOO', | |
| municipality: 'Laghouat' | |
| }, | |
| { | |
| name: 'Guemar Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-39', | |
| iata_code: 'ELU', | |
| municipality: 'Guemar' | |
| }, | |
| { | |
| name: 'Timimoun Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-54', | |
| iata_code: 'TMX', | |
| municipality: 'Timimoun' | |
| }, | |
| { | |
| name: 'Ain Beida Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-30', | |
| iata_code: 'OGX', | |
| municipality: 'Ouargla' | |
| }, | |
| { | |
| name: 'Zarzaitine - In Am\u00e9nas Airport', | |
| iso_country: 'DZ', | |
| country_name: 'Algeria', | |
| iso_region: 'DZ-33', | |
| iata_code: 'IAM', | |
| municipality: 'In Am\u00e9nas' | |
| }, | |
| { | |
| name: 'Cadjehoun Airport', | |
| iso_country: 'BJ', | |
| country_name: 'Benin', | |
| iso_region: 'BJ-AQ', | |
| iata_code: 'COO', | |
| municipality: 'Cotonou' | |
| }, | |
| { | |
| name: 'Djougou Airport', | |
| iso_country: 'BJ', | |
| country_name: 'Benin', | |
| iso_region: 'BJ-DO', | |
| iata_code: 'DJA', | |
| municipality: 'Djougou' | |
| }, | |
| { | |
| name: 'Kandi Airport', | |
| iso_country: 'BJ', | |
| country_name: 'Benin', | |
| iso_region: 'BJ-AL', | |
| iata_code: 'KDC', | |
| municipality: 'Kandi' | |
| }, | |
| { | |
| name: 'Natitingou Airport', | |
| iso_country: 'BJ', | |
| country_name: 'Benin', | |
| iso_region: 'BJ-AK', | |
| iata_code: 'NAE', | |
| municipality: 'Natitingou' | |
| }, | |
| { | |
| name: 'Parakou Airport', | |
| iso_country: 'BJ', | |
| country_name: 'Benin', | |
| iso_region: 'BJ-BO', | |
| iata_code: 'PKO', | |
| municipality: 'Parakou' | |
| }, | |
| { | |
| name: 'Sav\u00e9 Airport', | |
| iso_country: 'BJ', | |
| country_name: 'Benin', | |
| iso_region: 'BJ-CO', | |
| iata_code: 'SVF', | |
| municipality: 'Sav\u00e9' | |
| }, | |
| { | |
| name: "Baicheng Chang'an Airport", | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-22', | |
| iata_code: 'DBC', | |
| municipality: 'Baicheng' | |
| }, | |
| { | |
| name: 'Dutch Bay SPB', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-6', | |
| iata_code: 'DBK', | |
| municipality: 'Kalpitiya Island' | |
| }, | |
| { | |
| name: 'Debepare Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'DBP', | |
| municipality: 'Debepare' | |
| }, | |
| { | |
| name: 'Dambulu Oya Tank Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-2', | |
| iata_code: 'DBU', | |
| municipality: 'Dambulla' | |
| }, | |
| { | |
| name: 'Dubai Creek SPB', | |
| iso_country: 'AE', | |
| country_name: 'United Arab Emirates', | |
| iso_region: 'AE-DU', | |
| iata_code: 'DCG', | |
| municipality: 'Dubai' | |
| }, | |
| { | |
| name: 'Dahl Creek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'DCK', | |
| municipality: 'Dahl Creek' | |
| }, | |
| { | |
| name: 'Dodoima Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'DDM', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Deqing Moganshan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-33', | |
| iata_code: 'DEQ', | |
| municipality: 'Huzhou' | |
| }, | |
| { | |
| name: 'Derim Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'DER', | |
| municipality: 'Derim' | |
| }, | |
| { | |
| name: 'Nop Goliat Dekai Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PP', | |
| iata_code: 'DEX', | |
| municipality: 'Dekai' | |
| }, | |
| { | |
| name: 'Kaya Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-SMT', | |
| iata_code: 'XKY', | |
| municipality: 'Kaya' | |
| }, | |
| { | |
| name: 'Ouahigouya Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-YAT', | |
| iata_code: 'OUG', | |
| municipality: 'Ouahigouya' | |
| }, | |
| { | |
| name: 'Djibo Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-SOM', | |
| iata_code: 'XDJ', | |
| municipality: 'Djibo' | |
| }, | |
| { | |
| name: 'Leo Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-SIS', | |
| iata_code: 'XLU', | |
| municipality: 'Leo' | |
| }, | |
| { | |
| name: 'Po Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-NAO', | |
| iata_code: 'PUP', | |
| municipality: 'Po' | |
| }, | |
| { | |
| name: 'Boulsa Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-NAM', | |
| iata_code: 'XBO', | |
| municipality: 'Boulsa' | |
| }, | |
| { | |
| name: 'Bogande Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-GNA', | |
| iata_code: 'XBG', | |
| municipality: 'Bogande' | |
| }, | |
| { | |
| name: 'Diapaga Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-TAP', | |
| iata_code: 'DIP', | |
| municipality: 'Diapaga' | |
| }, | |
| { | |
| name: 'Dori Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-SEN', | |
| iata_code: 'DOR', | |
| municipality: 'Dori' | |
| }, | |
| { | |
| name: "Fada N'gourma Airport", | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-GOU', | |
| iata_code: 'FNG', | |
| municipality: "Fada N'gourma" | |
| }, | |
| { | |
| name: 'Gorom-Gorom Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-OUD', | |
| iata_code: 'XGG', | |
| municipality: 'Gorom-Gorom' | |
| }, | |
| { | |
| name: 'Kantchari Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-TAP', | |
| iata_code: 'XKA', | |
| municipality: 'Kantchari' | |
| }, | |
| { | |
| name: 'Tambao Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-OUD', | |
| iata_code: 'TMQ', | |
| municipality: 'Tambao' | |
| }, | |
| { | |
| name: 'Pama Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-KMP', | |
| iata_code: 'XPA', | |
| municipality: 'Pama' | |
| }, | |
| { | |
| name: 'Arly Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-TAP', | |
| iata_code: 'ARL', | |
| municipality: 'Arly' | |
| }, | |
| { | |
| name: 'Sebba Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-SEN', | |
| iata_code: 'XSE', | |
| municipality: 'Sebba' | |
| }, | |
| { | |
| name: 'Tenkodogo Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-BLG', | |
| iata_code: 'TEG', | |
| municipality: 'Tenkodogo' | |
| }, | |
| { | |
| name: 'Zabr\u00e9 Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-BLG', | |
| iata_code: 'XZA', | |
| municipality: 'Zabr\u00e9' | |
| }, | |
| { | |
| name: 'Ouagadougou Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-KAD', | |
| iata_code: 'OUA', | |
| municipality: 'Ouagadougou' | |
| }, | |
| { | |
| name: 'Banfora Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-COM', | |
| iata_code: 'BNR', | |
| municipality: 'Banfora' | |
| }, | |
| { | |
| name: 'Dedougou Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-MOU', | |
| iata_code: 'DGU', | |
| municipality: 'Dedougou' | |
| }, | |
| { | |
| name: 'Gaoua Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-PON', | |
| iata_code: 'XGA', | |
| municipality: 'Gaoua' | |
| }, | |
| { | |
| name: 'Nouna Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-KOS', | |
| iata_code: 'XNU', | |
| municipality: 'Nouna' | |
| }, | |
| { | |
| name: 'Bobo Dioulasso Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-HOU', | |
| iata_code: 'BOY', | |
| municipality: 'Bobo Dioulasso' | |
| }, | |
| { | |
| name: 'Tougan Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-SOR', | |
| iata_code: 'TUQ', | |
| municipality: 'Tougan' | |
| }, | |
| { | |
| name: 'Diebougou Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-BGR', | |
| iata_code: 'XDE', | |
| municipality: 'Diebougou' | |
| }, | |
| { | |
| name: 'Aribinda Airport', | |
| iso_country: 'BF', | |
| country_name: 'Burkina Faso', | |
| iso_region: 'BF-SOM', | |
| iata_code: 'XAR', | |
| municipality: 'Aribinda' | |
| }, | |
| { | |
| name: 'Kotoka International Airport', | |
| iso_country: 'GH', | |
| country_name: 'Ghana', | |
| iso_region: 'GH-AA', | |
| iata_code: 'ACC', | |
| municipality: 'Accra' | |
| }, | |
| { | |
| name: 'Tamale Airport', | |
| iso_country: 'GH', | |
| country_name: 'Ghana', | |
| iso_region: 'GH-NP', | |
| iata_code: 'TML', | |
| municipality: 'Tamale' | |
| }, | |
| { | |
| name: 'Wa Airport', | |
| iso_country: 'GH', | |
| country_name: 'Ghana', | |
| iso_region: 'GH-UW', | |
| iata_code: 'WZA', | |
| municipality: 'Wa' | |
| }, | |
| { | |
| name: 'Dandugama Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-1', | |
| iata_code: 'DGM', | |
| municipality: 'Colombo' | |
| }, | |
| { | |
| name: 'Kumasi Airport', | |
| iso_country: 'GH', | |
| country_name: 'Ghana', | |
| iso_region: 'GH-AH', | |
| iata_code: 'KMS', | |
| municipality: 'Kumasi' | |
| }, | |
| { | |
| name: 'Sunyani Airport', | |
| iso_country: 'GH', | |
| country_name: 'Ghana', | |
| iso_region: 'GH-BO', | |
| iata_code: 'NYI', | |
| municipality: 'Sunyani' | |
| }, | |
| { | |
| name: 'Takoradi Airport', | |
| iso_country: 'GH', | |
| country_name: 'Ghana', | |
| iso_region: 'GH-WP', | |
| iata_code: 'TKD', | |
| municipality: 'Sekondi-Takoradi' | |
| }, | |
| { | |
| name: 'Deer Harbor SPB', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'DHB', | |
| municipality: 'Deer Harbor' | |
| }, | |
| { | |
| name: 'Dalnegorsk Airport', | |
| iso_country: 'RU', | |
| country_name: 'Russian Federation', | |
| iso_region: 'RU-PRI', | |
| iata_code: 'DHG', | |
| municipality: 'Dalnegorsk' | |
| }, | |
| { | |
| name: 'Ad-Dali Airport', | |
| iso_country: 'YE', | |
| country_name: 'Yemen', | |
| iso_region: 'YE-DA', | |
| iata_code: 'DHL', | |
| municipality: 'Ad-Dali' | |
| }, | |
| { | |
| name: 'Aboisso Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-CM', | |
| iata_code: 'ABO', | |
| municipality: 'Aboisso' | |
| }, | |
| { | |
| name: 'F\u00e9lix-Houphou\u00ebt-Boigny International Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-AB', | |
| iata_code: 'ABJ', | |
| municipality: 'Abidjan' | |
| }, | |
| { | |
| name: 'Abengourou Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-CM', | |
| iata_code: 'OGO', | |
| municipality: 'Abengourou' | |
| }, | |
| { | |
| name: 'Boundiali Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-SV', | |
| iata_code: 'BXI', | |
| municipality: 'Boundiali' | |
| }, | |
| { | |
| name: 'Bouak\u00e9 Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-VB', | |
| iata_code: 'BYK', | |
| municipality: 'Bouak\u00e9' | |
| }, | |
| { | |
| name: 'Bouna Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-ZZ', | |
| iata_code: 'BQO', | |
| municipality: 'Bouna' | |
| }, | |
| { | |
| name: 'Soko Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-ZZ', | |
| iata_code: 'BDK', | |
| municipality: 'Bondoukou' | |
| }, | |
| { | |
| name: 'Dimbokro Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-LC', | |
| iata_code: 'DIM', | |
| municipality: 'Dimbokro' | |
| }, | |
| { | |
| name: 'Daloa Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-SM', | |
| iata_code: 'DJO', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Gagnoa Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-SM', | |
| iata_code: 'GGN', | |
| municipality: 'Gagnoa' | |
| }, | |
| { | |
| name: 'Guiglo Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-MG', | |
| iata_code: 'GGO', | |
| municipality: 'Guiglo' | |
| }, | |
| { | |
| name: 'Nero-Mer Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-BS', | |
| iata_code: 'BBV', | |
| municipality: 'Grand-B\u00e9r\u00e9by' | |
| }, | |
| { | |
| name: 'Korhogo Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-SV', | |
| iata_code: 'HGO', | |
| municipality: 'Korhogo' | |
| }, | |
| { | |
| name: 'Man Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-MG', | |
| iata_code: 'MJC', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Odienne Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-DN', | |
| iata_code: 'KEO', | |
| municipality: 'Odienne' | |
| }, | |
| { | |
| name: 'Ouango Fitini Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-ZZ', | |
| iata_code: 'OFI', | |
| municipality: 'Ouango Fitini' | |
| }, | |
| { | |
| name: 'S\u00e9gu\u00e9la Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-WR', | |
| iata_code: 'SEO', | |
| municipality: 'S\u00e9gu\u00e9la' | |
| }, | |
| { | |
| name: 'San Pedro Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-BS', | |
| iata_code: 'SPY', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Sassandra Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-BS', | |
| iata_code: 'ZSS', | |
| municipality: 'Sassandra' | |
| }, | |
| { | |
| name: 'Tabou Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-BS', | |
| iata_code: 'TXU', | |
| municipality: 'Tabou' | |
| }, | |
| { | |
| name: 'Mahana Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-WR', | |
| iata_code: 'TOZ', | |
| municipality: 'Touba' | |
| }, | |
| { | |
| name: 'Mawella Lagoon Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-3', | |
| iata_code: 'DIW', | |
| municipality: 'Dickwella' | |
| }, | |
| { | |
| name: 'Yamoussoukro Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-YM', | |
| iata_code: 'ASK', | |
| municipality: 'Yamoussoukro' | |
| }, | |
| { | |
| name: 'Dalnerechensk Airport', | |
| iso_country: 'RU', | |
| country_name: 'Russian Federation', | |
| iso_region: 'RU-PRI', | |
| iata_code: 'DLR', | |
| municipality: 'Dalnerechensk' | |
| }, | |
| { | |
| name: 'Diomede Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'DIO', | |
| municipality: 'Diomede' | |
| }, | |
| { | |
| name: 'Katsina Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-KT', | |
| iata_code: 'DKA', | |
| municipality: 'Katsina' | |
| }, | |
| { | |
| name: 'Nnamdi Azikiwe International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-FC', | |
| iata_code: 'ABV', | |
| municipality: 'Abuja' | |
| }, | |
| { | |
| name: 'Akwa Ibom International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-AK', | |
| iata_code: 'QUO', | |
| municipality: 'Uyo' | |
| }, | |
| { | |
| name: 'Akure Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-ON', | |
| iata_code: 'AKR', | |
| municipality: 'Akure' | |
| }, | |
| { | |
| name: 'Asaba International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-DE', | |
| iata_code: 'ABB', | |
| municipality: 'Asaba' | |
| }, | |
| { | |
| name: 'Sir Abubakar Tafawa Balewa International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-BA', | |
| iata_code: 'BCU', | |
| municipality: 'Bauchi' | |
| }, | |
| { | |
| name: 'Benin Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-ED', | |
| iata_code: 'BNI', | |
| municipality: 'Benin' | |
| }, | |
| { | |
| name: 'Margaret Ekpo International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-CR', | |
| iata_code: 'CBQ', | |
| municipality: 'Calabar' | |
| }, | |
| { | |
| name: 'Akanu Ibiam International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-EN', | |
| iata_code: 'ENU', | |
| municipality: 'Enegu' | |
| }, | |
| { | |
| name: 'Gusau Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-ZA', | |
| iata_code: 'QUS', | |
| municipality: 'Gusau' | |
| }, | |
| { | |
| name: 'Ibadan Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-OY', | |
| iata_code: 'IBA', | |
| municipality: 'Ibadan' | |
| }, | |
| { | |
| name: 'Ilorin International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-KW', | |
| iata_code: 'ILR', | |
| municipality: 'Ilorin' | |
| }, | |
| { | |
| name: 'Sam Mbakwe International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-IM', | |
| iata_code: 'QOW', | |
| municipality: 'Owerri' | |
| }, | |
| { | |
| name: 'Yakubu Gowon Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-PL', | |
| iata_code: 'JOS', | |
| municipality: 'Jos' | |
| }, | |
| { | |
| name: 'Kaduna Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-KD', | |
| iata_code: 'KAD', | |
| municipality: 'Kaduna' | |
| }, | |
| { | |
| name: 'Mallam Aminu International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-KN', | |
| iata_code: 'KAN', | |
| municipality: 'Kano' | |
| }, | |
| { | |
| name: 'Maiduguri International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-BO', | |
| iata_code: 'MIU', | |
| municipality: 'Maiduguri' | |
| }, | |
| { | |
| name: 'Makurdi Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-BE', | |
| iata_code: 'MDI', | |
| municipality: 'Makurdi' | |
| }, | |
| { | |
| name: 'Murtala Muhammed International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-LA', | |
| iata_code: 'LOS', | |
| municipality: 'Lagos' | |
| }, | |
| { | |
| name: 'Minna Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-NI', | |
| iata_code: 'MXJ', | |
| municipality: 'Minna' | |
| }, | |
| { | |
| name: 'Port Harcourt International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-RI', | |
| iata_code: 'PHC', | |
| municipality: 'Port Harcourt' | |
| }, | |
| { | |
| name: 'Sadiq Abubakar III International Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-SO', | |
| iata_code: 'SKO', | |
| municipality: 'Sokoto' | |
| }, | |
| { | |
| name: 'Yola Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-AD', | |
| iata_code: 'YOL', | |
| municipality: 'Yola' | |
| }, | |
| { | |
| name: 'Zaria Airport', | |
| iso_country: 'NG', | |
| country_name: 'Nigeria', | |
| iso_region: 'NG-KD', | |
| iata_code: 'ZAR', | |
| municipality: 'Zaria' | |
| }, | |
| { | |
| name: 'Dorobisoro Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'DOO', | |
| municipality: 'Dorobisoro' | |
| }, | |
| { | |
| name: 'Deputatskiy Airport', | |
| iso_country: 'RU', | |
| country_name: 'Russian Federation', | |
| iso_region: 'RU-SA', | |
| iata_code: 'DPT', | |
| municipality: 'Deputatskiy' | |
| }, | |
| { | |
| name: 'Daqing Sartu Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-23', | |
| iata_code: 'DQA', | |
| municipality: 'Daqing' | |
| }, | |
| { | |
| name: 'Maradi Airport', | |
| iso_country: 'NE', | |
| country_name: 'Niger', | |
| iso_region: 'NE-4', | |
| iata_code: 'MFQ', | |
| municipality: 'Maradi' | |
| }, | |
| { | |
| name: 'Diori Hamani International Airport', | |
| iso_country: 'NE', | |
| country_name: 'Niger', | |
| iso_region: 'NE-8', | |
| iata_code: 'NIM', | |
| municipality: 'Niamey' | |
| }, | |
| { | |
| name: 'Tahoua Airport', | |
| iso_country: 'NE', | |
| country_name: 'Niger', | |
| iso_region: 'NE-5', | |
| iata_code: 'THZ', | |
| municipality: 'Tahoua' | |
| }, | |
| { | |
| name: 'Mano Dayak International Airport', | |
| iso_country: 'NE', | |
| country_name: 'Niger', | |
| iso_region: 'NE-1', | |
| iata_code: 'AJY', | |
| municipality: 'Agadez' | |
| }, | |
| { | |
| name: 'Arlit Airport', | |
| iso_country: 'NE', | |
| country_name: 'Niger', | |
| iso_region: 'NE-1', | |
| iata_code: 'RLT', | |
| municipality: 'Arlit' | |
| }, | |
| { | |
| name: 'Zinder Airport', | |
| iso_country: 'NE', | |
| country_name: 'Niger', | |
| iso_region: 'NE-7', | |
| iata_code: 'ZND', | |
| municipality: 'Zinder' | |
| }, | |
| { | |
| name: 'Dilasag Airport', | |
| iso_country: 'PH', | |
| country_name: 'Philippines', | |
| iso_region: 'PH-AUR', | |
| iata_code: 'DSG', | |
| municipality: 'Dilasag' | |
| }, | |
| { | |
| name: 'Tabarka-A\u00efn Draham International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-32', | |
| iata_code: 'TBJ', | |
| municipality: 'Tabarka' | |
| }, | |
| { | |
| name: 'Monastir Habib Bourguiba International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-52', | |
| iata_code: 'MIR', | |
| municipality: 'Monastir' | |
| }, | |
| { | |
| name: 'Enfidha - Hammamet International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-51', | |
| iata_code: 'NBE', | |
| municipality: 'Enfidha' | |
| }, | |
| { | |
| name: 'Tunis Carthage International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-11', | |
| iata_code: 'TUN', | |
| municipality: 'Tunis' | |
| }, | |
| { | |
| name: 'Gafsa Ksar International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-71', | |
| iata_code: 'GAF', | |
| municipality: 'Gafsa' | |
| }, | |
| { | |
| name: 'Gab\u00e8s Matmata International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-81', | |
| iata_code: 'GAE', | |
| municipality: 'Gab\u00e8s' | |
| }, | |
| { | |
| name: 'Djerba Zarzis International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-82', | |
| iata_code: 'DJE', | |
| municipality: 'Mellita' | |
| }, | |
| { | |
| name: 'El Borma Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-83', | |
| iata_code: 'EBM', | |
| municipality: 'El Borma' | |
| }, | |
| { | |
| name: 'Sfax Thyna International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-61', | |
| iata_code: 'SFA', | |
| municipality: 'Sfax' | |
| }, | |
| { | |
| name: 'Tozeur Nefta International Airport', | |
| iso_country: 'TN', | |
| country_name: 'Tunisia', | |
| iso_region: 'TN-72', | |
| iata_code: 'TOE', | |
| municipality: 'Tozeur' | |
| }, | |
| { | |
| name: 'Andavadoaka Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'DVD', | |
| municipality: 'Andavadoaka' | |
| }, | |
| { | |
| name: 'Diyawanna Oya Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-1', | |
| iata_code: 'DWO', | |
| municipality: 'Sri Jayawardenepura Kotte' | |
| }, | |
| { | |
| name: 'Dwyer Airport', | |
| iso_country: 'AF', | |
| country_name: 'Afghanistan', | |
| iso_region: 'AF-HEL', | |
| iata_code: 'DWR', | |
| municipality: 'Reg' | |
| }, | |
| { | |
| name: 'Niamtougou International Airport', | |
| iso_country: 'TG', | |
| country_name: 'Togo', | |
| iso_region: 'TG-K', | |
| iata_code: 'LRL', | |
| municipality: 'Niamtougou' | |
| }, | |
| { | |
| name: 'Lom\u00e9\u2013Tokoin International Airport', | |
| iso_country: 'TG', | |
| country_name: 'Togo', | |
| iso_region: 'TG-M', | |
| iata_code: 'LFW', | |
| municipality: 'Lom\u00e9' | |
| }, | |
| { | |
| name: 'Dazhou Jinya Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-51', | |
| iata_code: 'DZH', | |
| municipality: 'Dazhou (Dachuan)' | |
| }, | |
| { | |
| name: 'Elenak Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-KWA', | |
| iata_code: 'EAL', | |
| municipality: 'Mejato Island' | |
| }, | |
| { | |
| name: 'Antwerp International Airport (Deurne)', | |
| iso_country: 'BE', | |
| country_name: 'Belgium', | |
| iso_region: 'BE-VAN', | |
| iata_code: 'ANR', | |
| municipality: 'Antwerp' | |
| }, | |
| { | |
| name: 'Brussels Airport', | |
| iso_country: 'BE', | |
| country_name: 'Belgium', | |
| iso_region: 'BE-VBR', | |
| iata_code: 'BRU', | |
| municipality: 'Zaventem' | |
| }, | |
| { | |
| name: 'Brussels South Charleroi Airport', | |
| iso_country: 'BE', | |
| country_name: 'Belgium', | |
| iso_region: 'BE-WHT', | |
| iata_code: 'CRL', | |
| municipality: 'Charleroi' | |
| }, | |
| { | |
| name: 'Ghent/Industry Zone Heliport', | |
| iso_country: 'BE', | |
| country_name: 'Belgium', | |
| iso_region: 'BE-VOV', | |
| iata_code: 'GNE', | |
| municipality: 'Gent' | |
| }, | |
| { | |
| name: 'Flanders International Airport Kortrijk-Wevelgem', | |
| iso_country: 'BE', | |
| country_name: 'Belgium', | |
| iso_region: 'BE-VWV', | |
| iata_code: 'KJK', | |
| municipality: 'Wevelgem' | |
| }, | |
| { | |
| name: 'Li\u00e8ge Airport', | |
| iso_country: 'BE', | |
| country_name: 'Belgium', | |
| iso_region: 'BE-WLG', | |
| iata_code: 'LGG', | |
| municipality: 'Gr\u00e2ce-Hollogne' | |
| }, | |
| { | |
| name: 'Ebon Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-EBO', | |
| iata_code: 'EBO', | |
| municipality: 'Ebon Atoll' | |
| }, | |
| { | |
| name: 'Oostende-Brugge International Airport', | |
| iso_country: 'BE', | |
| country_name: 'Belgium', | |
| iso_region: 'BE-VWV', | |
| iata_code: 'OST', | |
| municipality: 'Oostende' | |
| }, | |
| { | |
| name: 'Oostmalle Airfield', | |
| iso_country: 'BE', | |
| country_name: 'Belgium', | |
| iso_region: 'BE-VAN', | |
| iata_code: 'OBL', | |
| municipality: 'Zoersel' | |
| }, | |
| { | |
| name: 'M\u00e9ndez Airport', | |
| iso_country: 'EC', | |
| country_name: 'Ecuador', | |
| iso_region: 'EC-S', | |
| iata_code: 'MZD', | |
| municipality: 'Santiago de M\u00e9ndez' | |
| }, | |
| { | |
| name: 'Edna Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'EDA', | |
| municipality: 'Edna Bay' | |
| }, | |
| { | |
| name: 'Leipzig\u2013Altenburg Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-TH', | |
| iata_code: 'AOC', | |
| municipality: 'Nobitz' | |
| }, | |
| { | |
| name: 'Heringsdorf Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-MV', | |
| iata_code: 'HDF', | |
| municipality: 'Zirchow' | |
| }, | |
| { | |
| name: 'Riesa-G\u00f6hlis Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SN', | |
| iata_code: 'IES', | |
| municipality: 'Riesa' | |
| }, | |
| { | |
| name: 'Rechlin-L\u00e4rz Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-MV', | |
| iata_code: 'REB', | |
| municipality: 'L\u00e4rz' | |
| }, | |
| { | |
| name: 'Cochstedt Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-ST', | |
| iata_code: 'CSO', | |
| municipality: 'Hecklingen' | |
| }, | |
| { | |
| name: 'Stralsund-Barth Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-MV', | |
| iata_code: 'BBH', | |
| municipality: 'Barth' | |
| }, | |
| { | |
| name: 'Neubrandenburg Trollenhagen Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-MV', | |
| iata_code: 'FNB', | |
| municipality: 'Trollenhagen' | |
| }, | |
| { | |
| name: 'R\u00fcgen Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-MV', | |
| iata_code: 'GTI', | |
| municipality: 'Dreschvitz' | |
| }, | |
| { | |
| name: 'K\u00f6then Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-ST', | |
| iata_code: 'KOQ', | |
| municipality: 'K\u00f6then (Anhalt)' | |
| }, | |
| { | |
| name: 'Peenem\u00fcnde Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-MV', | |
| iata_code: 'PEF', | |
| municipality: 'Peenem\u00fcnde' | |
| }, | |
| { | |
| name: 'Berlin Brandenburg Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BR', | |
| iata_code: 'BER', | |
| municipality: 'Berlin' | |
| }, | |
| { | |
| name: 'Dresden Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SN', | |
| iata_code: 'DRS', | |
| municipality: 'Dresden' | |
| }, | |
| { | |
| name: 'Erfurt-Weimar Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-TH', | |
| iata_code: 'ERF', | |
| municipality: 'Erfurt' | |
| }, | |
| { | |
| name: 'Frankfurt Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-HE', | |
| iata_code: 'FRA', | |
| municipality: 'Frankfurt am Main' | |
| }, | |
| { | |
| name: 'M\u00fcnster Osnabr\u00fcck Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'FMO', | |
| municipality: 'Greven' | |
| }, | |
| { | |
| name: 'Hamburg Helmut Schmidt Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-HH', | |
| iata_code: 'HAM', | |
| municipality: 'Hamburg' | |
| }, | |
| { | |
| name: 'Cologne Bonn Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'CGN', | |
| municipality: 'K\u00f6ln (Cologne)' | |
| }, | |
| { | |
| name: 'D\u00fcsseldorf Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'DUS', | |
| municipality: 'D\u00fcsseldorf' | |
| }, | |
| { | |
| name: 'Munich Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'MUC', | |
| municipality: 'Munich' | |
| }, | |
| { | |
| name: 'Nuremberg Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'NUE', | |
| municipality: 'Nuremberg' | |
| }, | |
| { | |
| name: 'Leipzig/Halle Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SN', | |
| iata_code: 'LEJ', | |
| municipality: 'Schkeuditz' | |
| }, | |
| { | |
| name: 'Saarbr\u00fccken Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SL', | |
| iata_code: 'SCN', | |
| municipality: 'Saarbr\u00fccken' | |
| }, | |
| { | |
| name: 'Stuttgart Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BW', | |
| iata_code: 'STR', | |
| municipality: 'Stuttgart' | |
| }, | |
| { | |
| name: 'Hannover Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'HAJ', | |
| municipality: 'Hannover' | |
| }, | |
| { | |
| name: 'Bremen Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-HB', | |
| iata_code: 'BRE', | |
| municipality: 'Bremen' | |
| }, | |
| { | |
| name: 'Frankfurt-Hahn Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-RP', | |
| iata_code: 'HHN', | |
| municipality: 'Frankfurt am Main (Lautzenhausen)' | |
| }, | |
| { | |
| name: 'Mannheim-City Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BW', | |
| iata_code: 'MHG', | |
| municipality: 'Mannheim' | |
| }, | |
| { | |
| name: 'Eisenach-Kindel Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-TH', | |
| iata_code: 'EIB', | |
| municipality: 'H\u00f6rselberg-Hainich' | |
| }, | |
| { | |
| name: 'Ludwigshafen Accident Hospital Heliport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-RP', | |
| iata_code: 'ZOE', | |
| municipality: 'Ludwigshafen' | |
| }, | |
| { | |
| name: 'Siegerland Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'SGE', | |
| municipality: 'Burbach' | |
| }, | |
| { | |
| name: 'Itzehoe Hungriger Wolf Airfield', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'IZE', | |
| municipality: 'Hohenlockstedt' | |
| }, | |
| { | |
| name: 'Hamburg-Finkenwerder Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-HH', | |
| iata_code: 'XFW', | |
| municipality: 'Hamburg' | |
| }, | |
| { | |
| name: 'Kiel-Holtenau Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'KEL', | |
| municipality: 'Kiel' | |
| }, | |
| { | |
| name: 'L\u00fcbeck Blankensee Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'LBC', | |
| municipality: 'L\u00fcbeck' | |
| }, | |
| { | |
| name: 'Neum\u00fcnster Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'EUM', | |
| municipality: 'Neum\u00fcnster' | |
| }, | |
| { | |
| name: 'Memmingen Allgau Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'FMM', | |
| municipality: 'Memmingen' | |
| }, | |
| { | |
| name: 'Aachen-Merzbr\u00fcck Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'AAH', | |
| municipality: 'Aachen' | |
| }, | |
| { | |
| name: 'Essen M\u00fclheim Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'ESS', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Bielefeld Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'BFE', | |
| municipality: 'Bielefeld' | |
| }, | |
| { | |
| name: 'M\u00f6nchengladbach Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'MGL', | |
| municipality: 'M\u00f6nchengladbach' | |
| }, | |
| { | |
| name: 'Paderborn Lippstadt Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'PAD', | |
| municipality: 'B\u00fcren' | |
| }, | |
| { | |
| name: 'Weeze Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'NRN', | |
| municipality: 'Weeze' | |
| }, | |
| { | |
| name: 'Dortmund Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'DTM', | |
| municipality: 'Dortmund' | |
| }, | |
| { | |
| name: 'Augsburg Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'AGB', | |
| municipality: 'Augsburg' | |
| }, | |
| { | |
| name: 'Oberpfaffenhofen Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'OBF', | |
| municipality: 'We\u00dfling' | |
| }, | |
| { | |
| name: 'Straubing Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'RBM', | |
| municipality: 'Atting' | |
| }, | |
| { | |
| name: 'Friedrichshafen Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BW', | |
| iata_code: 'FDH', | |
| municipality: 'Friedrichshafen' | |
| }, | |
| { | |
| name: 'Bayreuth Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'BYU', | |
| municipality: 'Bindlach' | |
| }, | |
| { | |
| name: 'Burg Feuerstein Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'URD', | |
| municipality: 'Ebermannstadt' | |
| }, | |
| { | |
| name: 'Giebelstadt Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'GHF', | |
| municipality: 'Giebelstadt' | |
| }, | |
| { | |
| name: 'Hof-Plauen Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'HOQ', | |
| municipality: 'Hof' | |
| }, | |
| { | |
| name: 'Bitburg Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-RP', | |
| iata_code: 'BBJ', | |
| municipality: 'Bitburg' | |
| }, | |
| { | |
| name: 'Zweibr\u00fccken Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-RP', | |
| iata_code: 'ZQW', | |
| municipality: 'Zweibr\u00fccken' | |
| }, | |
| { | |
| name: 'Karlsruhe Baden-Baden Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BW', | |
| iata_code: 'FKB', | |
| municipality: 'Rheinm\u00fcnster' | |
| }, | |
| { | |
| name: 'Lahr Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BW', | |
| iata_code: 'LHA', | |
| municipality: 'Lahr/Schwarzwald' | |
| }, | |
| { | |
| name: 'Braunschweig-Wolfsburg Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'BWE', | |
| municipality: 'Braunschweig' | |
| }, | |
| { | |
| name: 'Kassel Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-HE', | |
| iata_code: 'KSF', | |
| municipality: 'Calden' | |
| }, | |
| { | |
| name: 'Emden Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'EME', | |
| municipality: 'Emden' | |
| }, | |
| { | |
| name: 'Wangerooge Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'AGE', | |
| municipality: 'Wangerooge' | |
| }, | |
| { | |
| name: 'JadeWeser Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'WVN', | |
| municipality: 'Wilhelmshaven' | |
| }, | |
| { | |
| name: 'Juist Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'JUI', | |
| municipality: 'Juist' | |
| }, | |
| { | |
| name: 'Langeoog Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'LGO', | |
| municipality: 'Langeoog' | |
| }, | |
| { | |
| name: 'Borkum Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'BMK', | |
| municipality: 'Borkum' | |
| }, | |
| { | |
| name: 'Norden-Norddeich Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'NOD', | |
| municipality: 'Norddeich' | |
| }, | |
| { | |
| name: 'Varrelbusch Airfield', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'VAC', | |
| municipality: 'Cloppenburg' | |
| }, | |
| { | |
| name: 'Norderney Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'NRD', | |
| municipality: 'Norderney' | |
| }, | |
| { | |
| name: 'Baltrum Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'BMR', | |
| municipality: 'Baltrum' | |
| }, | |
| { | |
| name: 'Heide-B\u00fcsum Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'HEI', | |
| municipality: 'Oesterdeichstrich' | |
| }, | |
| { | |
| name: 'Flensburg-Sch\u00e4ferhaus Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'FLF', | |
| municipality: 'Flensburg' | |
| }, | |
| { | |
| name: 'Helgoland-D\u00fcne Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'HGL', | |
| municipality: 'Helgoland' | |
| }, | |
| { | |
| name: 'Husum-Schwesing Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'QHU', | |
| municipality: 'Husum' | |
| }, | |
| { | |
| name: 'Sankt Peter-Ording Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'PSH', | |
| municipality: 'Sankt Peter-Ording' | |
| }, | |
| { | |
| name: 'Westerland Sylt Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'GWT', | |
| municipality: 'Sylt' | |
| }, | |
| { | |
| name: 'Wyk auf F\u00f6hr Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'OHR', | |
| municipality: 'Wyk auf F\u00f6hr' | |
| }, | |
| { | |
| name: 'K\u00e4rdla Airport', | |
| iso_country: 'EE', | |
| country_name: 'Estonia', | |
| iso_region: 'EE-39', | |
| iata_code: 'KDL', | |
| municipality: 'K\u00e4rdla' | |
| }, | |
| { | |
| name: 'Kuressaare Airport', | |
| iso_country: 'EE', | |
| country_name: 'Estonia', | |
| iso_region: 'EE-74', | |
| iata_code: 'URE', | |
| municipality: 'Kuressaare' | |
| }, | |
| { | |
| name: 'P\u00e4rnu Airport', | |
| iso_country: 'EE', | |
| country_name: 'Estonia', | |
| iso_region: 'EE-67', | |
| iata_code: 'EPU', | |
| municipality: 'P\u00e4rnu' | |
| }, | |
| { | |
| name: 'Berenice International Airport / Banas Cape Air Base', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-BA', | |
| iata_code: 'EES', | |
| municipality: 'Berenice Troglodytica' | |
| }, | |
| { | |
| name: 'Lennart Meri Tallinn Airport', | |
| iso_country: 'EE', | |
| country_name: 'Estonia', | |
| iso_region: 'EE-37', | |
| iata_code: 'TLL', | |
| municipality: 'Tallinn' | |
| }, | |
| { | |
| name: 'Tartu Airport', | |
| iso_country: 'EE', | |
| country_name: 'Estonia', | |
| iso_region: 'EE-7B', | |
| iata_code: 'TAY', | |
| municipality: 'Tartu' | |
| }, | |
| { | |
| name: 'Enontekio Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-10', | |
| iata_code: 'ENF', | |
| municipality: 'Enontekio' | |
| }, | |
| { | |
| name: 'Efogi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'EFG', | |
| municipality: 'Efogi' | |
| }, | |
| { | |
| name: 'Halli Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-08', | |
| iata_code: 'KEV', | |
| municipality: 'J\u00e4ms\u00e4' | |
| }, | |
| { | |
| name: 'Hernesaari Heliport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-18', | |
| iata_code: 'HEN', | |
| municipality: 'Helsinki' | |
| }, | |
| { | |
| name: 'Helsinki Vantaa Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-18', | |
| iata_code: 'HEL', | |
| municipality: 'Helsinki' | |
| }, | |
| { | |
| name: 'Hyvink\u00e4\u00e4 Airfield', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-18', | |
| iata_code: 'HYV', | |
| municipality: 'Hyvink\u00e4\u00e4' | |
| }, | |
| { | |
| name: 'Kitee Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-13', | |
| iata_code: 'KTQ', | |
| municipality: 'Kitee' | |
| }, | |
| { | |
| name: 'Ivalo Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-10', | |
| iata_code: 'IVL', | |
| municipality: 'Ivalo' | |
| }, | |
| { | |
| name: 'Joensuu Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-13', | |
| iata_code: 'JOE', | |
| municipality: 'Joensuu' | |
| }, | |
| { | |
| name: 'Jyv\u00e4skyl\u00e4 Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-08', | |
| iata_code: 'JYV', | |
| municipality: 'Jyv\u00e4skyl\u00e4n Maalaiskunta' | |
| }, | |
| { | |
| name: 'Kauhava Airfield', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-03', | |
| iata_code: 'KAU', | |
| municipality: 'Kauhava' | |
| }, | |
| { | |
| name: 'Kemi-Tornio Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-10', | |
| iata_code: 'KEM', | |
| municipality: 'Kemi / Tornio' | |
| }, | |
| { | |
| name: 'Kajaani Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-05', | |
| iata_code: 'KAJ', | |
| municipality: 'Kajaani' | |
| }, | |
| { | |
| name: 'Kauhajoki Airfield', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-03', | |
| iata_code: 'KHJ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Kokkola-Pietarsaari Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-07', | |
| iata_code: 'KOK', | |
| municipality: 'Kokkola / Kruunupyy' | |
| }, | |
| { | |
| name: 'Kuusamo Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-14', | |
| iata_code: 'KAO', | |
| municipality: 'Kuusamo' | |
| }, | |
| { | |
| name: 'Kittil\u00e4 Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-10', | |
| iata_code: 'KTT', | |
| municipality: 'Kittil\u00e4' | |
| }, | |
| { | |
| name: 'Kuopio Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-15', | |
| iata_code: 'KUO', | |
| municipality: 'Kuopio / Siilinj\u00e4rvi' | |
| }, | |
| { | |
| name: 'Lappeenranta Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-02', | |
| iata_code: 'LPP', | |
| municipality: 'Lappeenranta' | |
| }, | |
| { | |
| name: 'Mariehamn Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-01', | |
| iata_code: 'MHQ', | |
| municipality: 'Mariehamn' | |
| }, | |
| { | |
| name: 'Mikkeli Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-04', | |
| iata_code: 'MIK', | |
| municipality: 'Mikkeli' | |
| }, | |
| { | |
| name: 'Oulu Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-14', | |
| iata_code: 'OUL', | |
| municipality: 'Oulu / Oulunsalo' | |
| }, | |
| { | |
| name: 'Pori Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-17', | |
| iata_code: 'POR', | |
| municipality: 'Pori' | |
| }, | |
| { | |
| name: 'Rovaniemi Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-10', | |
| iata_code: 'RVN', | |
| municipality: 'Rovaniemi' | |
| }, | |
| { | |
| name: 'Savonlinna Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-04', | |
| iata_code: 'SVL', | |
| municipality: 'Savonlinna' | |
| }, | |
| { | |
| name: 'Sein\u00e4joki Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-03', | |
| iata_code: 'SJY', | |
| municipality: 'Sein\u00e4joki / Ilmajoki' | |
| }, | |
| { | |
| name: 'Sodankyla Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-10', | |
| iata_code: 'SOT', | |
| municipality: 'Sodankyla' | |
| }, | |
| { | |
| name: 'Tampere-Pirkkala Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-11', | |
| iata_code: 'TMP', | |
| municipality: 'Tampere / Pirkkala' | |
| }, | |
| { | |
| name: 'Turku Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-19', | |
| iata_code: 'TKU', | |
| municipality: 'Turku' | |
| }, | |
| { | |
| name: 'Utti Air Base', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-09', | |
| iata_code: 'UTI', | |
| municipality: 'Utti / Valkeala' | |
| }, | |
| { | |
| name: 'Vaasa Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-12', | |
| iata_code: 'VAA', | |
| municipality: 'Vaasa' | |
| }, | |
| { | |
| name: 'Varkaus Airport', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-04', | |
| iata_code: 'VRK', | |
| municipality: 'Varkaus / Joroinen' | |
| }, | |
| { | |
| name: 'Ylivieska Airfield', | |
| iso_country: 'FI', | |
| country_name: 'Finland', | |
| iso_region: 'FI-14', | |
| iata_code: 'YLI', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Katameya Air Base', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-C', | |
| iata_code: 'TFR', | |
| municipality: 'New Cairo' | |
| }, | |
| { | |
| name: 'Abu Rudeis Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-JS', | |
| iata_code: 'AUE', | |
| municipality: 'Ras Abu Rudeis' | |
| }, | |
| { | |
| name: 'Belfast International Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-NIR', | |
| iata_code: 'BFS', | |
| municipality: 'Belfast' | |
| }, | |
| { | |
| name: 'Enniskillen/St Angelo Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-NIR', | |
| iata_code: 'ENK', | |
| municipality: 'Enniskillen' | |
| }, | |
| { | |
| name: 'George Best Belfast City Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-NIR', | |
| iata_code: 'BHD', | |
| municipality: 'Belfast' | |
| }, | |
| { | |
| name: 'City of Derry Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-NIR', | |
| iata_code: 'LDY', | |
| municipality: 'Derry' | |
| }, | |
| { | |
| name: 'Birmingham Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BHX', | |
| municipality: 'Birmingham, West Midlands' | |
| }, | |
| { | |
| name: 'Coventry Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'CVT', | |
| municipality: 'Coventry, West Midlands' | |
| }, | |
| { | |
| name: 'Gloucestershire Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'GLO', | |
| municipality: 'Staverton' | |
| }, | |
| { | |
| name: 'Sywell Aerodrome', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'ORM', | |
| municipality: 'Northampton, Northamptonshire' | |
| }, | |
| { | |
| name: 'Nottingham Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'NQT', | |
| municipality: 'Nottingham' | |
| }, | |
| { | |
| name: 'Cotswold Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'GBA', | |
| municipality: 'Cirencester, Gloucestershire' | |
| }, | |
| { | |
| name: 'Manchester Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'MAN', | |
| municipality: 'Manchester, Greater Manchester' | |
| }, | |
| { | |
| name: 'Upavon Aerodrome', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'UPV', | |
| municipality: 'Upavon' | |
| }, | |
| { | |
| name: 'RNAS Yeovilton', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'YEO', | |
| municipality: 'Yeovil' | |
| }, | |
| { | |
| name: 'Campbeltown Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'CAL', | |
| municipality: 'Campbeltown' | |
| }, | |
| { | |
| name: 'Eday Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'EOI', | |
| municipality: 'Eday' | |
| }, | |
| { | |
| name: 'Fair Isle Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'FIE', | |
| municipality: 'Fair Isle' | |
| }, | |
| { | |
| name: 'Whalsay Airstrip', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'WHS', | |
| municipality: 'Whalsay, Shetlands' | |
| }, | |
| { | |
| name: 'Coll Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'COL', | |
| municipality: 'Coll Island' | |
| }, | |
| { | |
| name: 'North Ronaldsay Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'NRL', | |
| municipality: 'North Ronaldsay' | |
| }, | |
| { | |
| name: 'Oban Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'OBN', | |
| municipality: 'North Connel' | |
| }, | |
| { | |
| name: 'Papa Westray Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'PPW', | |
| municipality: 'Papa Westray' | |
| }, | |
| { | |
| name: 'Stronsay Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'SOY', | |
| municipality: 'Stronsay' | |
| }, | |
| { | |
| name: 'Sanday Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'NDY', | |
| municipality: 'Sanday' | |
| }, | |
| { | |
| name: 'Lerwick / Tingwall Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'LWK', | |
| municipality: 'Lerwick' | |
| }, | |
| { | |
| name: 'Westray Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'WRY', | |
| municipality: 'Westray' | |
| }, | |
| { | |
| name: 'Colonsay Airstrip', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'CSA', | |
| municipality: 'Colonsay' | |
| }, | |
| { | |
| name: 'Haverfordwest Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-WLS', | |
| iata_code: 'HAW', | |
| municipality: 'Haverfordwest' | |
| }, | |
| { | |
| name: 'Cardiff International Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-WLS', | |
| iata_code: 'CWL', | |
| municipality: 'Rhoose, Vale of Glamorgan' | |
| }, | |
| { | |
| name: 'Swansea Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-WLS', | |
| iata_code: 'SWS', | |
| municipality: 'Swansea' | |
| }, | |
| { | |
| name: 'Bristol Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BRS', | |
| municipality: 'Bristol' | |
| }, | |
| { | |
| name: 'Liverpool John Lennon Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LPL', | |
| municipality: 'Liverpool' | |
| }, | |
| { | |
| name: 'London Luton Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LTN', | |
| municipality: 'Luton, Bedfordshire' | |
| }, | |
| { | |
| name: "Land's End Airport", | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LEQ', | |
| municipality: "Land's End, Cornwall" | |
| }, | |
| { | |
| name: "St. Mary's Airport", | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'ISC', | |
| municipality: "St. Mary's" | |
| }, | |
| { | |
| name: 'Bournemouth Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BOH', | |
| municipality: 'Christchurch, Dorset' | |
| }, | |
| { | |
| name: 'Southampton Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'SOU', | |
| municipality: 'Southampton' | |
| }, | |
| { | |
| name: 'Bembridge Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BBP', | |
| municipality: 'Bembridge' | |
| }, | |
| { | |
| name: 'Cornwall Airport Newquay', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'NQY', | |
| municipality: 'Newquay' | |
| }, | |
| { | |
| name: 'Goodwood Aerodrome', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'QUG', | |
| municipality: 'Chichester, West Sussex' | |
| }, | |
| { | |
| name: 'Alderney Airport', | |
| iso_country: 'GG', | |
| country_name: 'Guernsey', | |
| iso_region: 'GG-A', | |
| iata_code: 'ACI', | |
| municipality: 'Saint Anne' | |
| }, | |
| { | |
| name: 'Guernsey Airport', | |
| iso_country: 'GG', | |
| country_name: 'Guernsey', | |
| iso_region: 'GG-G', | |
| iata_code: 'GCI', | |
| municipality: 'Saint Peter Port' | |
| }, | |
| { | |
| name: 'Jersey Airport', | |
| iso_country: 'JE', | |
| country_name: 'Jersey', | |
| iso_region: 'JE-U-A', | |
| iata_code: 'JER', | |
| municipality: 'Saint Helier' | |
| }, | |
| { | |
| name: 'Brighton City Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'ESH', | |
| municipality: 'Brighton, East Sussex' | |
| }, | |
| { | |
| name: 'London Biggin Hill Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BQH', | |
| municipality: 'London' | |
| }, | |
| { | |
| name: 'London Gatwick Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LGW', | |
| municipality: 'Gatwick, Surrey' | |
| }, | |
| { | |
| name: 'London City Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LCY', | |
| municipality: 'London' | |
| }, | |
| { | |
| name: 'Farnborough Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'FAB', | |
| municipality: 'Farnborough' | |
| }, | |
| { | |
| name: 'Blackbushe Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BBS', | |
| municipality: 'Camberley, Surrey' | |
| }, | |
| { | |
| name: 'London Heathrow Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LHR', | |
| municipality: 'London' | |
| }, | |
| { | |
| name: 'London Southend Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'SEN', | |
| municipality: 'Southend-on-Sea, Essex' | |
| }, | |
| { | |
| name: 'Lydd London Ashford Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LYX', | |
| municipality: 'Romney Marsh, Kent' | |
| }, | |
| { | |
| name: 'Carlisle Lake District Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'CAX', | |
| municipality: 'Carlisle' | |
| }, | |
| { | |
| name: 'Blackpool International Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BLK', | |
| municipality: 'Blackpool' | |
| }, | |
| { | |
| name: 'Humberside Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'HUY', | |
| municipality: 'Grimsby' | |
| }, | |
| { | |
| name: 'Barrow Walney Island Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BWF', | |
| municipality: 'Barrow-in-Furness' | |
| }, | |
| { | |
| name: 'Leeds Bradford Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LBA', | |
| municipality: 'Leeds, West Yorkshire' | |
| }, | |
| { | |
| name: 'Warton Aerodrome', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'WRT', | |
| municipality: 'Warton' | |
| }, | |
| { | |
| name: 'Hawarden Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-WLS', | |
| iata_code: 'CEG', | |
| municipality: 'Broughton' | |
| }, | |
| { | |
| name: 'Isle of Man Airport', | |
| iso_country: 'IM', | |
| country_name: 'Isle of Man', | |
| iso_region: 'IM-U-A', | |
| iata_code: 'IOM', | |
| municipality: 'Castletown' | |
| }, | |
| { | |
| name: 'Newcastle International Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'NCL', | |
| municipality: 'Newcastle upon Tyne, Tyne and Wear' | |
| }, | |
| { | |
| name: 'Teesside International Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'MME', | |
| municipality: 'Darlington, Durham' | |
| }, | |
| { | |
| name: 'East Midlands Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'EMA', | |
| municipality: 'Nottingham' | |
| }, | |
| { | |
| name: 'Anglesey Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-WLS', | |
| iata_code: 'VLY', | |
| municipality: 'Angelsey' | |
| }, | |
| { | |
| name: 'Kirkwall Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'KOI', | |
| municipality: 'Orkney Islands' | |
| }, | |
| { | |
| name: 'Sumburgh Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'LSI', | |
| municipality: 'Lerwick' | |
| }, | |
| { | |
| name: 'Wick Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'WIC', | |
| municipality: 'Wick' | |
| }, | |
| { | |
| name: 'Aberdeen Dyce Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'ABZ', | |
| municipality: 'Aberdeen' | |
| }, | |
| { | |
| name: 'Inverness Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'INV', | |
| municipality: 'Inverness' | |
| }, | |
| { | |
| name: 'Glasgow International Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'GLA', | |
| municipality: 'Paisley, Renfrewshire' | |
| }, | |
| { | |
| name: 'Edinburgh Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'EDI', | |
| municipality: 'Edinburgh' | |
| }, | |
| { | |
| name: 'Islay Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'ILY', | |
| municipality: 'Isle of Islay, Argyll and Bute' | |
| }, | |
| { | |
| name: 'Glasgow Prestwick Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'PIK', | |
| municipality: 'Prestwick, South Ayrshire' | |
| }, | |
| { | |
| name: 'Benbecula Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'BEB', | |
| municipality: 'Balivanich' | |
| }, | |
| { | |
| name: 'Dundee Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'DND', | |
| municipality: 'Dundee' | |
| }, | |
| { | |
| name: 'Stornoway Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'SYY', | |
| municipality: 'Stornoway, Western Isles' | |
| }, | |
| { | |
| name: 'Barra Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'BRR', | |
| municipality: 'Eoligarry' | |
| }, | |
| { | |
| name: 'Perth/Scone Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'PSL', | |
| municipality: 'Perth' | |
| }, | |
| { | |
| name: 'Tiree Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'TRE', | |
| municipality: 'Balemartine' | |
| }, | |
| { | |
| name: 'Unst Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'UNT', | |
| municipality: 'Shetland Islands' | |
| }, | |
| { | |
| name: 'Leuchars Station Airfield', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'ADX', | |
| municipality: 'Leuchars, Fife' | |
| }, | |
| { | |
| name: 'RAF Lossiemouth', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'LMO', | |
| municipality: 'Lossiemouth' | |
| }, | |
| { | |
| name: 'Cambridge City Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'CBG', | |
| municipality: 'Cambridge, Cambridgeshire' | |
| }, | |
| { | |
| name: 'Norwich Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'NWI', | |
| municipality: 'Norwich, Norfolk' | |
| }, | |
| { | |
| name: 'London Stansted Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'STN', | |
| municipality: 'London' | |
| }, | |
| { | |
| name: 'Wycombe Air Park', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'HYC', | |
| municipality: 'High Wycombe' | |
| }, | |
| { | |
| name: 'Exeter International Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'EXT', | |
| municipality: 'Exeter, Devon' | |
| }, | |
| { | |
| name: 'Oxford (Kidlington) Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'OXF', | |
| municipality: 'Kidlington' | |
| }, | |
| { | |
| name: 'Rochester Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'RCS', | |
| municipality: 'Rochester, Kent' | |
| }, | |
| { | |
| name: 'RAF Benson', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BEX', | |
| municipality: 'Benson' | |
| }, | |
| { | |
| name: 'RAF Lakenheath', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'LKZ', | |
| municipality: 'Brandon, Suffolk' | |
| }, | |
| { | |
| name: 'RAF Mildenhall', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'MHZ', | |
| municipality: 'Bury Saint Edmunds, Suffolk' | |
| }, | |
| { | |
| name: 'RAF Wyton', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'QUY', | |
| municipality: 'St. Ives' | |
| }, | |
| { | |
| name: 'RAF Fairford', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'FFD', | |
| municipality: 'Fairford' | |
| }, | |
| { | |
| name: 'RAF Brize Norton', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BZZ', | |
| municipality: 'Carterton, Oxfordshire' | |
| }, | |
| { | |
| name: 'RAF Odiham', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'ODH', | |
| municipality: 'Odiham' | |
| }, | |
| { | |
| name: 'RAF Northolt', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'NHT', | |
| municipality: 'London' | |
| }, | |
| { | |
| name: 'RAF Coningsby', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'QCY', | |
| municipality: 'Coningsby' | |
| }, | |
| { | |
| name: 'RAF Honington', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'BEQ', | |
| municipality: 'Bury Saint Edmunds, Suffolk' | |
| }, | |
| { | |
| name: 'RAF Scampton', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'SQZ', | |
| municipality: 'Scampton' | |
| }, | |
| { | |
| name: 'RAF Waddington', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'WTN', | |
| municipality: 'Waddington' | |
| }, | |
| { | |
| name: 'RAF Marham', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-ENG', | |
| iata_code: 'KNF', | |
| municipality: "King's Lynn, Norfolk" | |
| }, | |
| { | |
| name: 'Mount Pleasant Airport', | |
| iso_country: 'FK', | |
| country_name: 'Falkland Islands (Malvinas)', | |
| iso_region: 'FK-U-A', | |
| iata_code: 'MPN', | |
| municipality: 'Mount Pleasant' | |
| }, | |
| { | |
| name: 'Amsterdam Airport Schiphol', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-NH', | |
| iata_code: 'AMS', | |
| municipality: 'Amsterdam' | |
| }, | |
| { | |
| name: 'Maastricht Aachen Airport', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-LI', | |
| iata_code: 'MST', | |
| municipality: 'Maastricht' | |
| }, | |
| { | |
| name: 'Eindhoven Airport', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-NB', | |
| iata_code: 'EIN', | |
| municipality: 'Eindhoven' | |
| }, | |
| { | |
| name: 'Groningen Airport Eelde', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-DR', | |
| iata_code: 'GRQ', | |
| municipality: 'Groningen' | |
| }, | |
| { | |
| name: 'Gilze Rijen Air Base', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-NB', | |
| iata_code: 'GLZ', | |
| municipality: 'Rijen' | |
| }, | |
| { | |
| name: 'De Kooy Airfield / Den Helder Naval Air Station', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-NH', | |
| iata_code: 'DHR', | |
| municipality: 'Den Helder' | |
| }, | |
| { | |
| name: 'Lelystad Airport', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-FL', | |
| iata_code: 'LEY', | |
| municipality: 'Lelystad' | |
| }, | |
| { | |
| name: 'Leeuwarden Air Base', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-FR', | |
| iata_code: 'LWR', | |
| municipality: 'Leeuwarden' | |
| }, | |
| { | |
| name: 'Rotterdam The Hague Airport', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-ZH', | |
| iata_code: 'RTM', | |
| municipality: 'Rotterdam' | |
| }, | |
| { | |
| name: 'Twente Airport', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-OV', | |
| iata_code: 'ENS', | |
| municipality: 'Enschede' | |
| }, | |
| { | |
| name: 'Ezhou Huahu Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-13', | |
| iata_code: 'EHU', | |
| municipality: 'Ezhou' | |
| }, | |
| { | |
| name: 'Volkel Air Base', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-NB', | |
| iata_code: 'UDE', | |
| municipality: 'Uden' | |
| }, | |
| { | |
| name: 'Woensdrecht Air Base', | |
| iso_country: 'NL', | |
| country_name: 'Netherlands', | |
| iso_region: 'NL-NB', | |
| iata_code: 'WOE', | |
| municipality: 'Hoogerheide' | |
| }, | |
| { | |
| name: 'Bantry Aerodrome', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-C', | |
| iata_code: 'BYT', | |
| municipality: 'Bantry' | |
| }, | |
| { | |
| name: 'Belmullet Aerodrome', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-MO', | |
| iata_code: 'BLY', | |
| municipality: 'Belmullet' | |
| }, | |
| { | |
| name: 'Connemara Regional Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-G', | |
| iata_code: 'NNR', | |
| municipality: 'Inverin' | |
| }, | |
| { | |
| name: 'Cork Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-C', | |
| iata_code: 'ORK', | |
| municipality: 'Cork' | |
| }, | |
| { | |
| name: 'Galway Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-G', | |
| iata_code: 'GWY', | |
| municipality: 'Galway' | |
| }, | |
| { | |
| name: 'Donegal Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-DL', | |
| iata_code: 'CFN', | |
| municipality: 'Donegal' | |
| }, | |
| { | |
| name: 'Dublin Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-D', | |
| iata_code: 'DUB', | |
| municipality: 'Dublin' | |
| }, | |
| { | |
| name: 'Inishmore Aerodrome', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-G', | |
| iata_code: 'IOR', | |
| municipality: 'Inis M\u00f3r' | |
| }, | |
| { | |
| name: 'Inisheer Aerodrome', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-G', | |
| iata_code: 'INQ', | |
| municipality: 'Inis O\u00edrr' | |
| }, | |
| { | |
| name: 'Kilkenny Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-KK', | |
| iata_code: 'KKY', | |
| municipality: 'Kilkenny' | |
| }, | |
| { | |
| name: 'Ireland West Knock Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-MO', | |
| iata_code: 'NOC', | |
| municipality: 'Charlestown' | |
| }, | |
| { | |
| name: 'Kerry Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-KY', | |
| iata_code: 'KIR', | |
| municipality: 'Killarney' | |
| }, | |
| { | |
| name: 'Letterkenny Airfield', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-DL', | |
| iata_code: 'LTR', | |
| municipality: 'Letterkenny' | |
| }, | |
| { | |
| name: 'Inishmaan Aerodrome', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-G', | |
| iata_code: 'IIA', | |
| municipality: 'Inis Me\u00e1in' | |
| }, | |
| { | |
| name: 'Shannon Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-CE', | |
| iata_code: 'SNN', | |
| municipality: 'Shannon' | |
| }, | |
| { | |
| name: 'Sligo Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-SO', | |
| iata_code: 'SXL', | |
| municipality: 'Sligo' | |
| }, | |
| { | |
| name: 'Waterford Airport', | |
| iso_country: 'IE', | |
| country_name: 'Ireland', | |
| iso_region: 'IE-WD', | |
| iata_code: 'WAT', | |
| municipality: 'Waterford' | |
| }, | |
| { | |
| name: 'Ejin Banner Taolai Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-15', | |
| iata_code: 'EJN', | |
| municipality: 'Ejin Banner' | |
| }, | |
| { | |
| name: 'Enejit Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-MIL', | |
| iata_code: 'EJT', | |
| municipality: 'Enejit Island' | |
| }, | |
| { | |
| name: 'Aarhus Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-82', | |
| iata_code: 'AAR', | |
| municipality: 'Aarhus' | |
| }, | |
| { | |
| name: 'Billund Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-83', | |
| iata_code: 'BLL', | |
| municipality: 'Billund' | |
| }, | |
| { | |
| name: 'Copenhagen Kastrup Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-84', | |
| iata_code: 'CPH', | |
| municipality: 'Copenhagen' | |
| }, | |
| { | |
| name: 'Esbjerg Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-83', | |
| iata_code: 'EBJ', | |
| municipality: 'Esbjerg' | |
| }, | |
| { | |
| name: 'Midtjyllands Airport / Air Base Karup', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-82', | |
| iata_code: 'KRP', | |
| municipality: 'Karup' | |
| }, | |
| { | |
| name: 'L\u00e6s\u00f8 Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-81', | |
| iata_code: 'BYR', | |
| municipality: 'L\u00e6s\u00f8' | |
| }, | |
| { | |
| name: 'Lolland Falster Maribo Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-85', | |
| iata_code: 'MRW', | |
| municipality: 'R\u00f8dby' | |
| }, | |
| { | |
| name: 'Odense Hans Christian Andersen Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-83', | |
| iata_code: 'ODE', | |
| municipality: 'Odense' | |
| }, | |
| { | |
| name: 'Copenhagen Roskilde Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-85', | |
| iata_code: 'RKE', | |
| municipality: 'Roskilde' | |
| }, | |
| { | |
| name: 'Bornholm Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-84', | |
| iata_code: 'RNN', | |
| municipality: 'R\u00f8nne' | |
| }, | |
| { | |
| name: 'S\u00f8nderborg Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-83', | |
| iata_code: 'SGD', | |
| municipality: 'S\u00f8nderborg' | |
| }, | |
| { | |
| name: 'Sindal Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-81', | |
| iata_code: 'CNL', | |
| municipality: 'Sindal' | |
| }, | |
| { | |
| name: 'Skrydstrup Air Base', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-83', | |
| iata_code: 'SKS', | |
| municipality: 'Vojens' | |
| }, | |
| { | |
| name: 'Skive Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-82', | |
| iata_code: 'SQW', | |
| municipality: 'Skive' | |
| }, | |
| { | |
| name: 'Thisted Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-81', | |
| iata_code: 'TED', | |
| municipality: 'Thisted' | |
| }, | |
| { | |
| name: 'V\u00e1gar Airport', | |
| iso_country: 'FO', | |
| country_name: 'Faroe Islands', | |
| iso_region: 'FO-U-A', | |
| iata_code: 'FAE', | |
| municipality: 'V\u00e1gar' | |
| }, | |
| { | |
| name: 'Stauning Vestjylland Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-82', | |
| iata_code: 'STA', | |
| municipality: 'Skjern' | |
| }, | |
| { | |
| name: 'Aalborg Airport', | |
| iso_country: 'DK', | |
| country_name: 'Denmark', | |
| iso_region: 'DK-81', | |
| iata_code: 'AAL', | |
| municipality: 'Aalborg' | |
| }, | |
| { | |
| name: 'Luxembourg-Findel International Airport', | |
| iso_country: 'LU', | |
| country_name: 'Luxembourg', | |
| iso_region: 'LU-L', | |
| iata_code: 'LUX', | |
| municipality: 'Luxembourg' | |
| }, | |
| { | |
| name: 'El Mirador Heliport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-PE', | |
| iata_code: 'EMR', | |
| municipality: 'El Mirador' | |
| }, | |
| { | |
| name: '\u00c5lesund Airport, Vigra', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-15', | |
| iata_code: 'AES', | |
| municipality: '\u00c5lesund' | |
| }, | |
| { | |
| name: 'And\u00f8ya Airport, Andenes', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'ANX', | |
| municipality: 'Andenes' | |
| }, | |
| { | |
| name: 'Alta Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'ALF', | |
| municipality: 'Alta' | |
| }, | |
| { | |
| name: 'F\u00f8rde Airport, Bringeland', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-46', | |
| iata_code: 'FDE', | |
| municipality: 'F\u00f8rde' | |
| }, | |
| { | |
| name: 'Br\u00f8nn\u00f8ysund Airport, Br\u00f8nn\u00f8y', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'BNN', | |
| municipality: 'Br\u00f8nn\u00f8y' | |
| }, | |
| { | |
| name: 'Bod\u00f8 Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'BOO', | |
| municipality: 'Bod\u00f8' | |
| }, | |
| { | |
| name: 'Bergen Airport, Flesland', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-46', | |
| iata_code: 'BGO', | |
| municipality: 'Bergen' | |
| }, | |
| { | |
| name: 'B\u00e5tsfjord Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'BJF', | |
| municipality: 'B\u00e5tsfjord' | |
| }, | |
| { | |
| name: 'Berlev\u00e5g Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'BVG', | |
| municipality: 'Berlev\u00e5g' | |
| }, | |
| { | |
| name: 'Kristiansand Airport, Kjevik', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-42', | |
| iata_code: 'KRS', | |
| municipality: 'Kjevik' | |
| }, | |
| { | |
| name: 'Bardufoss Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-55', | |
| iata_code: 'BDU', | |
| municipality: 'M\u00e5lselv' | |
| }, | |
| { | |
| name: 'Harstad/Narvik Airport, Evenes', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'EVE', | |
| municipality: 'Evenes' | |
| }, | |
| { | |
| name: 'Fagernes Airport, Leirin', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-34', | |
| iata_code: 'VDB', | |
| municipality: 'Fagernes' | |
| }, | |
| { | |
| name: 'Flor\u00f8 Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-46', | |
| iata_code: 'FRO', | |
| municipality: 'Flor\u00f8' | |
| }, | |
| { | |
| name: 'Oslo Airport, Gardermoen', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-32', | |
| iata_code: 'OSL', | |
| municipality: 'Oslo' | |
| }, | |
| { | |
| name: 'Hamar Lufthavn, Stavsberg', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-34', | |
| iata_code: 'HMR', | |
| municipality: 'Hamar' | |
| }, | |
| { | |
| name: 'Haugesund Airport, Karm\u00f8y', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-11', | |
| iata_code: 'HAU', | |
| municipality: 'Karm\u00f8y' | |
| }, | |
| { | |
| name: 'Hammerfest Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'HFT', | |
| municipality: 'Hammerfest' | |
| }, | |
| { | |
| name: 'Hasvik Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'HAA', | |
| municipality: 'Hasvik' | |
| }, | |
| { | |
| name: 'Honningsv\u00e5g Airport, Valan', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'HVG', | |
| municipality: 'Honningsv\u00e5g' | |
| }, | |
| { | |
| name: 'Kristiansund Airport, Kvernberget', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-15', | |
| iata_code: 'KSU', | |
| municipality: 'Kvernberget' | |
| }, | |
| { | |
| name: 'Gol Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-33', | |
| iata_code: 'GLL', | |
| municipality: 'Klanten flyplass' | |
| }, | |
| { | |
| name: 'Kirkenes Airport, H\u00f8ybuktmoen', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'KKN', | |
| municipality: 'Kirkenes' | |
| }, | |
| { | |
| name: 'Leknes Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'LKN', | |
| municipality: 'Leknes' | |
| }, | |
| { | |
| name: 'Mehamn Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'MEH', | |
| municipality: 'Mehamn' | |
| }, | |
| { | |
| name: 'Molde Airport, \u00c5r\u00f8', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-15', | |
| iata_code: 'MOL', | |
| municipality: '\u00c5r\u00f8' | |
| }, | |
| { | |
| name: 'Mosj\u00f8en Airport, Kj\u00e6rstad', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'MJF', | |
| municipality: 'Mosj\u00f8en' | |
| }, | |
| { | |
| name: 'Lakselv Airport, Banak', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'LKL', | |
| municipality: 'Lakselv' | |
| }, | |
| { | |
| name: 'Namsos Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-50', | |
| iata_code: 'OSY', | |
| municipality: 'Namsos' | |
| }, | |
| { | |
| name: 'Notodden Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-40', | |
| iata_code: 'NTB', | |
| municipality: 'Notodden' | |
| }, | |
| { | |
| name: '\u00d8rland Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-50', | |
| iata_code: 'OLA', | |
| municipality: '\u00d8rland' | |
| }, | |
| { | |
| name: '\u00d8rsta-Volda Airport, Hovden', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-15', | |
| iata_code: 'HOV', | |
| municipality: '\u00d8rsta' | |
| }, | |
| { | |
| name: 'Mo i Rana Airport, R\u00f8ssvoll', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'MQN', | |
| municipality: 'Mo i Rana' | |
| }, | |
| { | |
| name: 'R\u00f8rvik Airport, Ryum', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-50', | |
| iata_code: 'RVK', | |
| municipality: 'R\u00f8rvik' | |
| }, | |
| { | |
| name: 'R\u00f8ros Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-50', | |
| iata_code: 'RRS', | |
| municipality: 'R\u00f8ros' | |
| }, | |
| { | |
| name: 'R\u00f8st Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'RET', | |
| municipality: 'R\u00f8st' | |
| }, | |
| { | |
| name: 'Moss Airport, Rygge', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-31', | |
| iata_code: 'RYG', | |
| municipality: 'Oslo' | |
| }, | |
| { | |
| name: 'Svalbard Airport, Longyear', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-21', | |
| iata_code: 'LYR', | |
| municipality: 'Longyearbyen' | |
| }, | |
| { | |
| name: 'Sandane Airport, Anda', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-46', | |
| iata_code: 'SDN', | |
| municipality: 'Sandane' | |
| }, | |
| { | |
| name: 'Sogndal Airport, Hauk\u00e5sen', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-46', | |
| iata_code: 'SOG', | |
| municipality: 'Sogndal' | |
| }, | |
| { | |
| name: 'Svolv\u00e6r Airport, Helle', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'SVJ', | |
| municipality: 'Svolv\u00e6r' | |
| }, | |
| { | |
| name: 'Stokmarknes Airport, Skagen', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'SKN', | |
| municipality: 'Hadsel' | |
| }, | |
| { | |
| name: 'Skien Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-40', | |
| iata_code: 'SKE', | |
| municipality: 'Geiteryggen' | |
| }, | |
| { | |
| name: 'Stord Airport, S\u00f8rstokken', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-46', | |
| iata_code: 'SRP', | |
| municipality: 'Leirvik' | |
| }, | |
| { | |
| name: 'S\u00f8rkjosen Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-55', | |
| iata_code: 'SOJ', | |
| municipality: 'S\u00f8rkjosen' | |
| }, | |
| { | |
| name: 'Vard\u00f8 Airport, Svartnes', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'VAW', | |
| municipality: 'Vard\u00f8' | |
| }, | |
| { | |
| name: 'Sandnessj\u00f8en Airport, Stokka', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'SSJ', | |
| municipality: 'Alstahaug' | |
| }, | |
| { | |
| name: 'Troms\u00f8 Airport, Langnes', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-55', | |
| iata_code: 'TOS', | |
| municipality: 'Troms\u00f8' | |
| }, | |
| { | |
| name: 'Sandefjord Airport, Torp', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-39', | |
| iata_code: 'TRF', | |
| municipality: 'Torp' | |
| }, | |
| { | |
| name: 'Trondheim Airport, V\u00e6rnes', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-50', | |
| iata_code: 'TRD', | |
| municipality: 'Trondheim' | |
| }, | |
| { | |
| name: 'Vads\u00f8 Airport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-56', | |
| iata_code: 'VDS', | |
| municipality: 'Vads\u00f8' | |
| }, | |
| { | |
| name: 'V\u00e6r\u00f8y Heliport', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-18', | |
| iata_code: 'VRY', | |
| municipality: 'V\u00e6r\u00f8y' | |
| }, | |
| { | |
| name: "Yan'an Nanniwan Airport", | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-61', | |
| iata_code: 'ENY', | |
| municipality: "Yan'an (Baota)" | |
| }, | |
| { | |
| name: 'Stavanger Airport, Sola', | |
| iso_country: 'NO', | |
| country_name: 'Norway', | |
| iso_region: 'NO-11', | |
| iata_code: 'SVG', | |
| municipality: 'Stavanger' | |
| }, | |
| { | |
| name: 'Bydgoszcz Ignacy Jan Paderewski Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-KP', | |
| iata_code: 'BZG', | |
| municipality: 'Bia\u0142e B\u0142ota' | |
| }, | |
| { | |
| name: 'Cz\u0119stochowa-Rudniki Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-SL', | |
| iata_code: 'CZW', | |
| municipality: 'Rudniki' | |
| }, | |
| { | |
| name: 'Gda\u0144sk Lech Wa\u0142\u0119sa Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-PM', | |
| iata_code: 'GDN', | |
| municipality: 'Gda\u0144sk' | |
| }, | |
| { | |
| name: 'Krak\u00f3w John Paul II International Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-MA', | |
| iata_code: 'KRK', | |
| municipality: 'Balice' | |
| }, | |
| { | |
| name: 'Katowice Wojciech Korfanty International Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-SL', | |
| iata_code: 'KTW', | |
| municipality: 'O\u017carowice' | |
| }, | |
| { | |
| name: 'Lublin Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-LU', | |
| iata_code: 'LUZ', | |
| municipality: 'Lublin' | |
| }, | |
| { | |
| name: '\u0141\u00f3d\u017a W\u0142adys\u0142aw Reymont Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-LD', | |
| iata_code: 'LCJ', | |
| municipality: '\u0141\u00f3d\u017a' | |
| }, | |
| { | |
| name: 'Modlin Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-MZ', | |
| iata_code: 'WMI', | |
| municipality: 'Nowy Dw\u00f3r Mazowiecki' | |
| }, | |
| { | |
| name: 'Pozna\u0144-\u0141awica Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-WP', | |
| iata_code: 'POZ', | |
| municipality: 'Pozna\u0144' | |
| }, | |
| { | |
| name: 'Warsaw Radom Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-MZ', | |
| iata_code: 'RDO', | |
| municipality: 'Radom' | |
| }, | |
| { | |
| name: 'Rzesz\u00f3w-Jasionka Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-PK', | |
| iata_code: 'RZE', | |
| municipality: 'Jasionka' | |
| }, | |
| { | |
| name: 'Solidarity Szczecin\u2013Goleni\u00f3w Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-ZP', | |
| iata_code: 'SZZ', | |
| municipality: 'Glewice' | |
| }, | |
| { | |
| name: 'Olsztyn-Mazury Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-WN', | |
| iata_code: 'SZY', | |
| municipality: 'Olsztyn' | |
| }, | |
| { | |
| name: 'Warsaw Chopin Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-MZ', | |
| iata_code: 'WAW', | |
| municipality: 'Warsaw' | |
| }, | |
| { | |
| name: 'Copernicus Wroc\u0142aw Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-DS', | |
| iata_code: 'WRO', | |
| municipality: 'Wroc\u0142aw' | |
| }, | |
| { | |
| name: 'Zielona G\u00f3ra-Babimost Airport', | |
| iso_country: 'PL', | |
| country_name: 'Poland', | |
| iso_region: 'PL-LB', | |
| iata_code: 'IEG', | |
| municipality: 'Nowe Kramsko' | |
| }, | |
| { | |
| name: 'Erdenet Airport', | |
| iso_country: 'MN', | |
| country_name: 'Mongolia', | |
| iso_region: 'MN-035', | |
| iata_code: 'ERT', | |
| municipality: 'Erdenet' | |
| }, | |
| { | |
| name: 'Ronneby Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-K', | |
| iata_code: 'RNB', | |
| municipality: 'Ronneby' | |
| }, | |
| { | |
| name: 'G\u00f6teborg Landvetter Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Q', | |
| iata_code: 'GOT', | |
| municipality: 'G\u00f6teborg' | |
| }, | |
| { | |
| name: 'J\u00f6nk\u00f6ping Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-F', | |
| iata_code: 'JKG', | |
| municipality: 'J\u00f6nk\u00f6ping' | |
| }, | |
| { | |
| name: 'Lidk\u00f6ping-Hovby Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Q', | |
| iata_code: 'LDK', | |
| municipality: 'Lidk\u00f6ping' | |
| }, | |
| { | |
| name: 'S\u00e4ve Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Q', | |
| iata_code: 'GSE', | |
| municipality: 'G\u00f6teborg' | |
| }, | |
| { | |
| name: 'Sk\u00f6vde Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Q', | |
| iata_code: 'KVB', | |
| municipality: 'Sk\u00f6vde' | |
| }, | |
| { | |
| name: 'Trollh\u00e4ttan-V\u00e4nersborg Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Q', | |
| iata_code: 'THN', | |
| municipality: 'Trollh\u00e4ttan' | |
| }, | |
| { | |
| name: 'Karlskoga Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-T', | |
| iata_code: 'KSK', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Mora Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-W', | |
| iata_code: 'MXX', | |
| municipality: 'Mora' | |
| }, | |
| { | |
| name: 'Stockholm Skavsta Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-D', | |
| iata_code: 'NYO', | |
| municipality: 'Nyk\u00f6ping' | |
| }, | |
| { | |
| name: 'Scandinavian Mountains Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-W', | |
| iata_code: 'SCR', | |
| municipality: 'Malung-S\u00e4len' | |
| }, | |
| { | |
| name: 'Kristianstad Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-M', | |
| iata_code: 'KID', | |
| municipality: 'Kristianstad' | |
| }, | |
| { | |
| name: 'Oskarshamn Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-H', | |
| iata_code: 'OSK', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Kalmar Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-H', | |
| iata_code: 'KLR', | |
| municipality: 'Kalmar' | |
| }, | |
| { | |
| name: 'Malm\u00f6 Sturup Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-M', | |
| iata_code: 'MMX', | |
| municipality: 'Malm\u00f6' | |
| }, | |
| { | |
| name: 'Halmstad Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-N', | |
| iata_code: 'HAD', | |
| municipality: 'Halmstad' | |
| }, | |
| { | |
| name: 'V\u00e4xj\u00f6 Kronoberg Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-G', | |
| iata_code: 'VXO', | |
| municipality: 'V\u00e4xj\u00f6' | |
| }, | |
| { | |
| name: 'Sveg Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Z', | |
| iata_code: 'EVG', | |
| municipality: 'Sveg' | |
| }, | |
| { | |
| name: 'G\u00e4llivare Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-BD', | |
| iata_code: 'GEV', | |
| municipality: 'G\u00e4llivare' | |
| }, | |
| { | |
| name: 'Kramfors-Sollefte\u00e5 H\u00f6ga Kusten Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Y', | |
| iata_code: 'KRF', | |
| municipality: 'Nyland' | |
| }, | |
| { | |
| name: 'Lycksele Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-AC', | |
| iata_code: 'LYC', | |
| municipality: 'Lycksele' | |
| }, | |
| { | |
| name: 'Sundsvall-H\u00e4rn\u00f6sand Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Y', | |
| iata_code: 'SDL', | |
| municipality: 'Sundsvall/ H\u00e4rn\u00f6sand' | |
| }, | |
| { | |
| name: '\u00d6rnsk\u00f6ldsvik Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Y', | |
| iata_code: 'OER', | |
| municipality: '\u00d6rnsk\u00f6ldsvik' | |
| }, | |
| { | |
| name: 'Kiruna Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-BD', | |
| iata_code: 'KRN', | |
| municipality: 'Kiruna' | |
| }, | |
| { | |
| name: 'Skellefte\u00e5 Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-AC', | |
| iata_code: 'SFT', | |
| municipality: 'Skellefte\u00e5' | |
| }, | |
| { | |
| name: 'Ume\u00e5 Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-AC', | |
| iata_code: 'UME', | |
| municipality: 'Ume\u00e5' | |
| }, | |
| { | |
| name: 'Vilhelmina South Lapland Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-AC', | |
| iata_code: 'VHM', | |
| municipality: 'Vilhelmina' | |
| }, | |
| { | |
| name: 'Arvidsjaur Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-BD', | |
| iata_code: 'AJR', | |
| municipality: 'Arvidsjaur' | |
| }, | |
| { | |
| name: 'S\u00f6derhamn Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-X', | |
| iata_code: 'SOO', | |
| municipality: 'S\u00f6derhamn' | |
| }, | |
| { | |
| name: '\u00c5re \u00d6stersund Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-Z', | |
| iata_code: 'OSD', | |
| municipality: '\u00d6stersund' | |
| }, | |
| { | |
| name: '\u00d6rebro Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-T', | |
| iata_code: 'ORB', | |
| municipality: '\u00d6rebro' | |
| }, | |
| { | |
| name: 'Hagfors Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-S', | |
| iata_code: 'HFS', | |
| municipality: 'R\u00e5da' | |
| }, | |
| { | |
| name: 'Karlstad Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-S', | |
| iata_code: 'KSD', | |
| municipality: 'Karlstad' | |
| }, | |
| { | |
| name: 'Stockholm V\u00e4ster\u00e5s Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-U', | |
| iata_code: 'VST', | |
| municipality: 'Stockholm / V\u00e4ster\u00e5s' | |
| }, | |
| { | |
| name: 'Lule\u00e5 Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-BD', | |
| iata_code: 'LLA', | |
| municipality: 'Lule\u00e5' | |
| }, | |
| { | |
| name: 'Stockholm-Arlanda Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-AB', | |
| iata_code: 'ARN', | |
| municipality: 'Stockholm' | |
| }, | |
| { | |
| name: 'Stockholm-Bromma Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-AB', | |
| iata_code: 'BMA', | |
| municipality: 'Stockholm' | |
| }, | |
| { | |
| name: 'Dala Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-W', | |
| iata_code: 'BLE', | |
| municipality: 'Borlange' | |
| }, | |
| { | |
| name: 'Hultsfred Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-H', | |
| iata_code: 'HLF', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'G\u00e4vle Sandviken Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-X', | |
| iata_code: 'GVX', | |
| municipality: 'G\u00e4vle / Sandviken' | |
| }, | |
| { | |
| name: 'Link\u00f6ping City Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-E', | |
| iata_code: 'LPI', | |
| municipality: 'Link\u00f6ping' | |
| }, | |
| { | |
| name: 'Norrk\u00f6ping Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-E', | |
| iata_code: 'NRK', | |
| municipality: 'Norrk\u00f6ping' | |
| }, | |
| { | |
| name: 'Torsby Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-S', | |
| iata_code: 'TYF', | |
| municipality: 'Torsby' | |
| }, | |
| { | |
| name: 'Eskilstuna Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-D', | |
| iata_code: 'EKT', | |
| municipality: 'Eskilstuna' | |
| }, | |
| { | |
| name: 'Visby Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-I', | |
| iata_code: 'VBY', | |
| municipality: 'Visby' | |
| }, | |
| { | |
| name: 'V\u00e4stervik Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-H', | |
| iata_code: 'VVK', | |
| municipality: 'V\u00e4stervik' | |
| }, | |
| { | |
| name: '\u00c4ngelholm-Helsingborg Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-M', | |
| iata_code: 'AGH', | |
| municipality: '\u00c4ngelholm' | |
| }, | |
| { | |
| name: 'Storuman Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-AC', | |
| iata_code: 'SQO', | |
| municipality: 'Storuman' | |
| }, | |
| { | |
| name: 'Idre Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-W', | |
| iata_code: 'IDB', | |
| municipality: 'Idre' | |
| }, | |
| { | |
| name: 'Pajala Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-BD', | |
| iata_code: 'PJA', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Hemavan Airport', | |
| iso_country: 'SE', | |
| country_name: 'Sweden', | |
| iso_region: 'SE-AC', | |
| iata_code: 'HMV', | |
| municipality: 'Hemavan' | |
| }, | |
| { | |
| name: 'Kombolcha Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AM', | |
| iata_code: 'DSE', | |
| municipality: 'Dessie' | |
| }, | |
| { | |
| name: 'Geladi Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SO', | |
| iata_code: 'GLC', | |
| municipality: 'Geladi' | |
| }, | |
| { | |
| name: 'Shire Inda Selassie Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-TI', | |
| iata_code: 'SHC', | |
| municipality: 'Shire Inda Selassie' | |
| }, | |
| { | |
| name: 'Spangdahlem Air Base', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-RP', | |
| iata_code: 'SPM', | |
| municipality: 'Trier' | |
| }, | |
| { | |
| name: 'Ramstein Air Base', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-RP', | |
| iata_code: 'RMS', | |
| municipality: 'Ramstein-Miesenbach' | |
| }, | |
| { | |
| name: 'Fritzlar Army Airfield', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-HE', | |
| iata_code: 'FRZ', | |
| municipality: 'Fritzlar' | |
| }, | |
| { | |
| name: 'Illesheim Army Heliport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'ILH', | |
| municipality: 'Illesheim' | |
| }, | |
| { | |
| name: 'Kitzingen Airfield', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'KZG', | |
| municipality: 'Kitzingen' | |
| }, | |
| { | |
| name: 'Sea-Airport Cuxhaven/Nordholz / Nordholz Naval Airbase', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NI', | |
| iata_code: 'FCN', | |
| municipality: 'Wurster Nordseek\u00fcste' | |
| }, | |
| { | |
| name: 'Geilenkirchen Air Base', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-NW', | |
| iata_code: 'GKE', | |
| municipality: 'Geilenkirchen' | |
| }, | |
| { | |
| name: 'Rostock-Laage Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-MV', | |
| iata_code: 'RLG', | |
| municipality: 'Laage' | |
| }, | |
| { | |
| name: 'Schleswig Air Base', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-SH', | |
| iata_code: 'WBG', | |
| municipality: 'Jagel' | |
| }, | |
| { | |
| name: 'Wiesbaden Army Airfield', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-HE', | |
| iata_code: 'WIE', | |
| municipality: 'Wiesbaden' | |
| }, | |
| { | |
| name: 'Ingolstadt Manching Airport', | |
| iso_country: 'DE', | |
| country_name: 'Germany', | |
| iso_region: 'DE-BY', | |
| iata_code: 'IGS', | |
| municipality: 'Manching' | |
| }, | |
| { | |
| name: 'Daugavpils International Airport', | |
| iso_country: 'LV', | |
| country_name: 'Latvia', | |
| iso_region: 'LV-111', | |
| iata_code: 'DGP', | |
| municipality: 'Daugavpils' | |
| }, | |
| { | |
| name: 'Liep\u0101ja International Airport', | |
| iso_country: 'LV', | |
| country_name: 'Latvia', | |
| iso_region: 'LV-112', | |
| iata_code: 'LPX', | |
| municipality: 'Liep\u0101ja' | |
| }, | |
| { | |
| name: 'Riga International Airport', | |
| iso_country: 'LV', | |
| country_name: 'Latvia', | |
| iso_region: 'LV-062', | |
| iata_code: 'RIX', | |
| municipality: 'Riga' | |
| }, | |
| { | |
| name: 'Ventspils International Airport', | |
| iso_country: 'LV', | |
| country_name: 'Latvia', | |
| iso_region: 'LV-VEN', | |
| iata_code: 'VNT', | |
| municipality: 'Ventspils' | |
| }, | |
| { | |
| name: 'Excursion Inlet Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'EXI', | |
| municipality: 'Excursion Inlet' | |
| }, | |
| { | |
| name: 'Kaunas International Airport', | |
| iso_country: 'LT', | |
| country_name: 'Lithuania', | |
| iso_region: 'LT-KU', | |
| iata_code: 'KUN', | |
| municipality: 'Kaunas' | |
| }, | |
| { | |
| name: 'Palanga International Airport', | |
| iso_country: 'LT', | |
| country_name: 'Lithuania', | |
| iso_region: 'LT-KL', | |
| iata_code: 'PLQ', | |
| municipality: 'Palanga' | |
| }, | |
| { | |
| name: 'Panev\u0117\u017eys Air Base', | |
| iso_country: 'LT', | |
| country_name: 'Lithuania', | |
| iso_region: 'LT-PN', | |
| iata_code: 'PNV', | |
| municipality: 'Panev\u0117\u017eys' | |
| }, | |
| { | |
| name: '\u0160iauliai International Airport', | |
| iso_country: 'LT', | |
| country_name: 'Lithuania', | |
| iso_region: 'LT-SA', | |
| iata_code: 'SQQ', | |
| municipality: '\u0160iauliai' | |
| }, | |
| { | |
| name: 'Vilnius International Airport', | |
| iso_country: 'LT', | |
| country_name: 'Lithuania', | |
| iso_region: 'LT-VL', | |
| iata_code: 'VNO', | |
| municipality: 'Vilnius' | |
| }, | |
| { | |
| name: 'Ranger Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'RGR', | |
| municipality: 'Ranger' | |
| }, | |
| { | |
| name: 'Alexander Bay Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'ALJ', | |
| municipality: 'Alexander Bay' | |
| }, | |
| { | |
| name: 'Aggeneys Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'AGZ', | |
| municipality: 'Aggeneys' | |
| }, | |
| { | |
| name: 'Alldays Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'ADY', | |
| municipality: 'Alldays' | |
| }, | |
| { | |
| name: 'Bisho Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'BIY', | |
| municipality: 'Bisho' | |
| }, | |
| { | |
| name: 'Bram Fischer International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-FS', | |
| iata_code: 'BFN', | |
| municipality: 'Bloemfontain' | |
| }, | |
| { | |
| name: 'Bultfontein Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-FS', | |
| iata_code: 'UTE', | |
| municipality: 'Bultfontein' | |
| }, | |
| { | |
| name: 'Arathusa Safari Lodge Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'ASS', | |
| municipality: 'Arathusa' | |
| }, | |
| { | |
| name: 'Cradock Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'CDO', | |
| municipality: 'Cradock' | |
| }, | |
| { | |
| name: 'Cape Town International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'CPT', | |
| municipality: 'Cape Town' | |
| }, | |
| { | |
| name: 'Mubatuba Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'DUK', | |
| municipality: 'Mubatuba' | |
| }, | |
| { | |
| name: 'Zulu Inyala Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'PZL', | |
| municipality: 'Phinda' | |
| }, | |
| { | |
| name: 'Ben Schoeman Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'ELS', | |
| municipality: 'East London' | |
| }, | |
| { | |
| name: 'Empangeni Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'EMG', | |
| municipality: 'Empangeni' | |
| }, | |
| { | |
| name: 'Ellisras Matimba Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'ELL', | |
| municipality: 'Ellisras' | |
| }, | |
| { | |
| name: 'Ficksburg Sentraoes Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-FS', | |
| iata_code: 'FCB', | |
| municipality: 'Ficksburg' | |
| }, | |
| { | |
| name: 'Grand Central Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-GT', | |
| iata_code: 'GCJ', | |
| municipality: 'Midrand' | |
| }, | |
| { | |
| name: 'George Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'GRJ', | |
| municipality: 'George' | |
| }, | |
| { | |
| name: 'Giyani Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'GIY', | |
| municipality: 'Giyani' | |
| }, | |
| { | |
| name: 'Rand Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-GT', | |
| iata_code: 'QRA', | |
| municipality: 'Johannesburg' | |
| }, | |
| { | |
| name: 'Hluhluwe Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'HLW', | |
| municipality: 'Hluhluwe' | |
| }, | |
| { | |
| name: 'Harrismith Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-FS', | |
| iata_code: 'HRS', | |
| municipality: 'Harrismith' | |
| }, | |
| { | |
| name: 'Hoedspruit Air Force Base Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'HDS', | |
| municipality: 'Hoedspruit' | |
| }, | |
| { | |
| name: 'P C Pelser Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NW', | |
| iata_code: 'KXE', | |
| municipality: 'Klerksdorp' | |
| }, | |
| { | |
| name: 'Kimberley Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'KIM', | |
| municipality: 'Kimberley' | |
| }, | |
| { | |
| name: 'Kruger Mpumalanga International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'MQP', | |
| municipality: 'Mpumalanga' | |
| }, | |
| { | |
| name: 'Komatipoort Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'KOF', | |
| municipality: 'Komatipoort' | |
| }, | |
| { | |
| name: 'Johan Pienaar Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'KMH', | |
| municipality: 'Kuruman' | |
| }, | |
| { | |
| name: 'Kleinsee Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'KLZ', | |
| municipality: 'Kleinsee' | |
| }, | |
| { | |
| name: 'Lanseria International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-GT', | |
| iata_code: 'HLA', | |
| municipality: 'Johannesburg' | |
| }, | |
| { | |
| name: 'Lime Acres Finsch Mine Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'LMR', | |
| municipality: 'Lime Acres' | |
| }, | |
| { | |
| name: 'Londolozi Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'LDZ', | |
| municipality: 'Londolozi' | |
| }, | |
| { | |
| name: 'King Shaka International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'DUR', | |
| municipality: 'Durban' | |
| }, | |
| { | |
| name: 'Lusikisiki Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'LUJ', | |
| municipality: 'Lusikisiki' | |
| }, | |
| { | |
| name: 'Louis Trichardt Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'LCD', | |
| municipality: 'Louis Trichardt' | |
| }, | |
| { | |
| name: 'Langebaanweg Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'SDB', | |
| municipality: 'Langebaanweg' | |
| }, | |
| { | |
| name: 'Ladysmith Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'LAY', | |
| municipality: 'Ladysmith' | |
| }, | |
| { | |
| name: 'Malamala Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'AAM', | |
| municipality: 'Malamala' | |
| }, | |
| { | |
| name: 'Margate Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'MGH', | |
| municipality: 'Margate' | |
| }, | |
| { | |
| name: 'Musina(Messina) Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'MEZ', | |
| municipality: 'Musina' | |
| }, | |
| { | |
| name: 'Mmabatho International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NW', | |
| iata_code: 'MBD', | |
| municipality: 'Mafeking' | |
| }, | |
| { | |
| name: 'Mossel Bay Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'MZY', | |
| municipality: 'Mossel Bay' | |
| }, | |
| { | |
| name: 'Mkuze Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'MZQ', | |
| municipality: 'Mkuze' | |
| }, | |
| { | |
| name: 'Newcastle Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'NCS', | |
| municipality: 'Newcastle' | |
| }, | |
| { | |
| name: 'Ngala Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'NGL', | |
| municipality: 'Ngala' | |
| }, | |
| { | |
| name: 'Nelspruit Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'NLP', | |
| municipality: 'Nelspruit' | |
| }, | |
| { | |
| name: 'Overberg Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'OVG', | |
| municipality: 'Overberg' | |
| }, | |
| { | |
| name: 'Oudtshoorn Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'OUH', | |
| municipality: 'Oudtshoorn' | |
| }, | |
| { | |
| name: 'O.R. Tambo International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-GT', | |
| iata_code: 'JNB', | |
| municipality: 'Johannesburg' | |
| }, | |
| { | |
| name: 'Port Alfred Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'AFD', | |
| municipality: 'Port Alfred' | |
| }, | |
| { | |
| name: 'Chief Dawid Stuurman International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'PLZ', | |
| municipality: 'Gqeberha (Port Elizabeth)' | |
| }, | |
| { | |
| name: 'Plettenberg Bay Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'PBZ', | |
| municipality: 'Plettenberg Bay' | |
| }, | |
| { | |
| name: 'Hendrik Van Eck Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'PHW', | |
| municipality: 'Phalaborwa' | |
| }, | |
| { | |
| name: 'Port St Johns Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'JOH', | |
| municipality: 'Port St Johns' | |
| }, | |
| { | |
| name: 'Prieska Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'PRK', | |
| municipality: 'Prieska' | |
| }, | |
| { | |
| name: 'Pietermaritzburg Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'PZB', | |
| municipality: 'Pietermaritzburg' | |
| }, | |
| { | |
| name: 'Pilanesberg International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NW', | |
| iata_code: 'NTY', | |
| municipality: 'Pilanesberg' | |
| }, | |
| { | |
| name: 'Polokwane International Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'PTG', | |
| municipality: 'Polokwane' | |
| }, | |
| { | |
| name: 'Potchefstroom Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NW', | |
| iata_code: 'PCF', | |
| municipality: 'Potchefstroom' | |
| }, | |
| { | |
| name: 'Queenstown Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'UTW', | |
| municipality: 'Queenstown' | |
| }, | |
| { | |
| name: 'Richards Bay Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'RCB', | |
| municipality: 'Richards Bay' | |
| }, | |
| { | |
| name: 'Reivilo Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NW', | |
| iata_code: 'RVO', | |
| municipality: 'Reivilo' | |
| }, | |
| { | |
| name: 'Robertson Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'ROD', | |
| municipality: 'Robertson' | |
| }, | |
| { | |
| name: 'Springbok Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'SBU', | |
| municipality: 'Springbok' | |
| }, | |
| { | |
| name: 'Secunda Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'ZEC', | |
| municipality: 'Secunda' | |
| }, | |
| { | |
| name: 'Sabi Sabi Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'GSS', | |
| municipality: 'Belfast' | |
| }, | |
| { | |
| name: 'Sishen Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'SIS', | |
| municipality: 'Sishen' | |
| }, | |
| { | |
| name: 'Skukuza Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'SZK', | |
| municipality: 'Skukuza' | |
| }, | |
| { | |
| name: 'Thohoyandou Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'THY', | |
| municipality: 'Thohoyandou' | |
| }, | |
| { | |
| name: 'Thaba Nchu Tar Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-FS', | |
| iata_code: 'TCU', | |
| municipality: 'Homeward' | |
| }, | |
| { | |
| name: 'Tzaneen Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NP', | |
| iata_code: 'LTA', | |
| municipality: 'Tzaneen' | |
| }, | |
| { | |
| name: 'Prince Mangosuthu Buthelezi Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'ULD', | |
| municipality: 'Ulundi' | |
| }, | |
| { | |
| name: 'Pierre Van Ryneveld Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NC', | |
| iata_code: 'UTN', | |
| municipality: 'Upington' | |
| }, | |
| { | |
| name: 'K. D. Matanzima Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-EC', | |
| iata_code: 'UTT', | |
| municipality: 'Mthatha' | |
| }, | |
| { | |
| name: 'Vryburg Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NW', | |
| iata_code: 'VRU', | |
| municipality: 'Vyrburg' | |
| }, | |
| { | |
| name: 'Virginia Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'VIR', | |
| municipality: 'Durban' | |
| }, | |
| { | |
| name: 'Vredendal Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-WC', | |
| iata_code: 'VRE', | |
| municipality: 'Vredendal' | |
| }, | |
| { | |
| name: 'Vryheid Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-NL', | |
| iata_code: 'VYD', | |
| municipality: 'Vryheid' | |
| }, | |
| { | |
| name: 'Wonderboom Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-GT', | |
| iata_code: 'PRY', | |
| municipality: 'Pretoria' | |
| }, | |
| { | |
| name: 'Waterkloof Air Force Base', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-GT', | |
| iata_code: 'WKF', | |
| municipality: 'Pretoria' | |
| }, | |
| { | |
| name: 'Welkom Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-FS', | |
| iata_code: 'WEL', | |
| municipality: 'Welkom' | |
| }, | |
| { | |
| name: 'P G Matante Intl', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-FR', | |
| iata_code: 'FRW', | |
| municipality: 'Francistown' | |
| }, | |
| { | |
| name: 'Ghanzi Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-GH', | |
| iata_code: 'GNZ', | |
| municipality: 'Ghanzi' | |
| }, | |
| { | |
| name: 'Jwaneng Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-JW', | |
| iata_code: 'JWA', | |
| municipality: 'Jwaneng' | |
| }, | |
| { | |
| name: 'Kasane Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-CH', | |
| iata_code: 'BBK', | |
| municipality: 'Kasane' | |
| }, | |
| { | |
| name: 'Khwai River Lodge Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-NW', | |
| iata_code: 'KHW', | |
| municipality: 'Khwai River Lodge' | |
| }, | |
| { | |
| name: 'Lobatse Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-LO', | |
| iata_code: 'LOQ', | |
| municipality: 'Lobatse' | |
| }, | |
| { | |
| name: 'Maun Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-NW', | |
| iata_code: 'MUB', | |
| municipality: 'Maun' | |
| }, | |
| { | |
| name: 'Orapa Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-CE', | |
| iata_code: 'ORP', | |
| municipality: 'Orapa' | |
| }, | |
| { | |
| name: 'Palapye Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-CE', | |
| iata_code: 'QPH', | |
| municipality: 'Palapye' | |
| }, | |
| { | |
| name: 'Sir Seretse Khama International Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-GA', | |
| iata_code: 'GBE', | |
| municipality: 'Gaborone' | |
| }, | |
| { | |
| name: 'Sua Pan Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-ST', | |
| iata_code: 'SXN', | |
| municipality: 'Sowa' | |
| }, | |
| { | |
| name: 'Selebi Phikwe Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-SP', | |
| iata_code: 'PKW', | |
| municipality: 'Selebi Phikwe' | |
| }, | |
| { | |
| name: 'Savuti Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-CH', | |
| iata_code: 'SVT', | |
| municipality: 'Savuti' | |
| }, | |
| { | |
| name: 'Shakawe Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-NW', | |
| iata_code: 'SWX', | |
| municipality: 'Shakawe' | |
| }, | |
| { | |
| name: 'Tuli Lodge Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-CE', | |
| iata_code: 'TLD', | |
| municipality: 'Tuli Lodge' | |
| }, | |
| { | |
| name: 'Tshabong Airport', | |
| iso_country: 'BW', | |
| country_name: 'Botswana', | |
| iso_region: 'BW-KG', | |
| iata_code: 'TBY', | |
| municipality: 'Tshabong' | |
| }, | |
| { | |
| name: 'Maya-Maya Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-12', | |
| iata_code: 'BZV', | |
| municipality: 'Brazzaville' | |
| }, | |
| { | |
| name: 'Djambala Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-14', | |
| iata_code: 'DJM', | |
| municipality: 'Djambala' | |
| }, | |
| { | |
| name: 'Kindamba Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-12', | |
| iata_code: 'KNJ', | |
| municipality: 'Kindamba' | |
| }, | |
| { | |
| name: 'Lague Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-14', | |
| iata_code: 'LCO', | |
| municipality: 'Lague' | |
| }, | |
| { | |
| name: 'Mouyondzi Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-11', | |
| iata_code: 'MUY', | |
| municipality: 'Mouyondzi' | |
| }, | |
| { | |
| name: 'Sibiti Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-2', | |
| iata_code: 'SIB', | |
| municipality: 'Sibiti' | |
| }, | |
| { | |
| name: 'Yokangassi Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-11', | |
| iata_code: 'NKY', | |
| municipality: 'Nkayi' | |
| }, | |
| { | |
| name: 'Zanaga Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-2', | |
| iata_code: 'ANJ', | |
| municipality: 'Zanaga' | |
| }, | |
| { | |
| name: 'Mossendjo Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-9', | |
| iata_code: 'MSX', | |
| municipality: 'Mossendjo' | |
| }, | |
| { | |
| name: 'Boundji Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-8', | |
| iata_code: 'BOE', | |
| municipality: 'Boundji' | |
| }, | |
| { | |
| name: 'Oyo Ollombo Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-14', | |
| iata_code: 'OLL', | |
| municipality: 'Oyo' | |
| }, | |
| { | |
| name: 'Ewo Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-8', | |
| iata_code: 'EWO', | |
| municipality: 'Ewo' | |
| }, | |
| { | |
| name: 'Gamboma Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-14', | |
| iata_code: 'GMM', | |
| municipality: 'Gamboma' | |
| }, | |
| { | |
| name: 'Impfondo Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-7', | |
| iata_code: 'ION', | |
| municipality: 'Impfondo' | |
| }, | |
| { | |
| name: 'Kelle Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-8', | |
| iata_code: 'KEE', | |
| municipality: 'Kelle' | |
| }, | |
| { | |
| name: 'Makoua Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-8', | |
| iata_code: 'MKJ', | |
| municipality: 'Makoua' | |
| }, | |
| { | |
| name: 'Owando Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-8', | |
| iata_code: 'FTX', | |
| municipality: 'Owando' | |
| }, | |
| { | |
| name: 'Souanke Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-13', | |
| iata_code: 'SOE', | |
| municipality: 'Souanke' | |
| }, | |
| { | |
| name: 'Betou Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-7', | |
| iata_code: 'BTB', | |
| municipality: 'Betou' | |
| }, | |
| { | |
| name: 'Ouesso Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-13', | |
| iata_code: 'OUE', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Makabana Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-9', | |
| iata_code: 'KMK', | |
| municipality: 'Makabana' | |
| }, | |
| { | |
| name: 'Ngot Nzoungou Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-9', | |
| iata_code: 'DIS', | |
| municipality: 'Dolisie' | |
| }, | |
| { | |
| name: 'Antonio Agostinho-Neto International Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-5', | |
| iata_code: 'PNR', | |
| municipality: 'Pointe Noire' | |
| }, | |
| { | |
| name: 'Matsapha Airport', | |
| iso_country: 'SZ', | |
| country_name: 'Eswatini', | |
| iso_region: 'SZ-MA', | |
| iata_code: 'MTS', | |
| municipality: 'Manzini' | |
| }, | |
| { | |
| name: 'King Mswati III International Airport', | |
| iso_country: 'SZ', | |
| country_name: 'Eswatini', | |
| iso_region: 'SZ-LU', | |
| iata_code: 'SHO', | |
| municipality: 'Mpaka' | |
| }, | |
| { | |
| name: 'Fetlar Airstrip', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'FEA', | |
| municipality: 'Fetlar Island' | |
| }, | |
| { | |
| name: 'Carnot Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-HS', | |
| iata_code: 'CRF', | |
| municipality: 'Carnot' | |
| }, | |
| { | |
| name: "Bangui M'Poko International Airport", | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-MP', | |
| iata_code: 'BGF', | |
| municipality: 'Bangui' | |
| }, | |
| { | |
| name: 'Bangassou Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-MB', | |
| iata_code: 'BGU', | |
| municipality: 'Bangassou' | |
| }, | |
| { | |
| name: 'Birao Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-VR', | |
| iata_code: 'IRO', | |
| municipality: 'Birao' | |
| }, | |
| { | |
| name: 'Bambari Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-UK', | |
| iata_code: 'BBY', | |
| municipality: 'Bambari' | |
| }, | |
| { | |
| name: "N'D\u00e9l\u00e9 Airport", | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-BB', | |
| iata_code: 'NDL', | |
| municipality: "N'D\u00e9l\u00e9" | |
| }, | |
| { | |
| name: 'Bouar Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-NM', | |
| iata_code: 'BOP', | |
| municipality: 'Bouar' | |
| }, | |
| { | |
| name: 'Bria Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-HK', | |
| iata_code: 'BIV', | |
| municipality: 'Bria' | |
| }, | |
| { | |
| name: 'Bossangoa Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-AC', | |
| iata_code: 'BSN', | |
| municipality: 'Bossangoa' | |
| }, | |
| { | |
| name: 'Berb\u00e9rati Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-HS', | |
| iata_code: 'BBT', | |
| municipality: 'Berb\u00e9rati' | |
| }, | |
| { | |
| name: 'Ouadda Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-HK', | |
| iata_code: 'ODA', | |
| municipality: 'Ouadda' | |
| }, | |
| { | |
| name: 'Yalinga Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-HK', | |
| iata_code: 'AIG', | |
| municipality: 'Yalinga' | |
| }, | |
| { | |
| name: 'Zemio Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-HM', | |
| iata_code: 'IMO', | |
| municipality: 'Zemio' | |
| }, | |
| { | |
| name: "M'Boki Airport", | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-HM', | |
| iata_code: 'MKI', | |
| municipality: 'Mboki' | |
| }, | |
| { | |
| name: 'Batangafo Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-AC', | |
| iata_code: 'BTG', | |
| municipality: 'Batangafo' | |
| }, | |
| { | |
| name: 'Gordil Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-BB', | |
| iata_code: 'GDI', | |
| municipality: 'Melle' | |
| }, | |
| { | |
| name: 'Bakouma Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-MB', | |
| iata_code: 'BMF', | |
| municipality: 'Bakouma' | |
| }, | |
| { | |
| name: 'Ouanda Djall\u00e9 Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-VR', | |
| iata_code: 'ODJ', | |
| municipality: 'Ouanda Djall\u00e9' | |
| }, | |
| { | |
| name: 'Rafa\u00ef Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-MB', | |
| iata_code: 'RFA', | |
| municipality: 'Rafa\u00ef' | |
| }, | |
| { | |
| name: 'Bouca Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-AC', | |
| iata_code: 'BCF', | |
| municipality: 'Bouca' | |
| }, | |
| { | |
| name: 'Bozoum Airport', | |
| iso_country: 'CF', | |
| country_name: 'Central African Republic', | |
| iso_region: 'CF-OP', | |
| iata_code: 'BOZ', | |
| municipality: 'Bozoum' | |
| }, | |
| { | |
| name: 'Annob\u00f3n Airport', | |
| iso_country: 'GQ', | |
| country_name: 'Equatorial Guinea', | |
| iso_region: 'GQ-AN', | |
| iata_code: 'NBN', | |
| municipality: 'San Antonio de Pal\u00e9' | |
| }, | |
| { | |
| name: 'Bata Airport', | |
| iso_country: 'GQ', | |
| country_name: 'Equatorial Guinea', | |
| iso_region: 'GQ-LI', | |
| iata_code: 'BSG', | |
| municipality: 'Bata' | |
| }, | |
| { | |
| name: 'President Obiang Nguema International Airport', | |
| iso_country: 'GQ', | |
| country_name: 'Equatorial Guinea', | |
| iso_region: 'GQ-WN', | |
| iata_code: 'GEM', | |
| municipality: 'Mengomey\u00e9n' | |
| }, | |
| { | |
| name: 'Malabo Airport', | |
| iso_country: 'GQ', | |
| country_name: 'Equatorial Guinea', | |
| iso_region: 'GQ-BN', | |
| iata_code: 'SSG', | |
| municipality: 'Malabo' | |
| }, | |
| { | |
| name: 'RAF Ascension Island', | |
| iso_country: 'SH', | |
| country_name: 'Saint Helena, Ascension and Tristan da Cunha', | |
| iso_region: 'SH-AC', | |
| iata_code: 'ASI', | |
| municipality: 'Cat Hill' | |
| }, | |
| { | |
| name: 'Saint Helena Airport', | |
| iso_country: 'SH', | |
| country_name: 'Saint Helena, Ascension and Tristan da Cunha', | |
| iso_region: 'SH-SH', | |
| iata_code: 'HLE', | |
| municipality: 'Longwood' | |
| }, | |
| { | |
| name: 'Sir Seewoosagur Ramgoolam International Airport', | |
| iso_country: 'MU', | |
| country_name: 'Mauritius', | |
| iso_region: 'MU-GP', | |
| iata_code: 'MRU', | |
| municipality: 'Plaine Magnien' | |
| }, | |
| { | |
| name: 'Sir Charles Gaetan Duval Airport', | |
| iso_country: 'MU', | |
| country_name: 'Mauritius', | |
| iso_region: 'MU-VP', | |
| iata_code: 'RRG', | |
| municipality: 'Port Mathurin' | |
| }, | |
| { | |
| name: 'Finschhafen Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'FIN', | |
| municipality: 'Buki' | |
| }, | |
| { | |
| name: 'Nanuku Airport', | |
| iso_country: 'FJ', | |
| country_name: 'Fiji', | |
| iso_region: 'FJ-C', | |
| iata_code: 'PHR', | |
| municipality: 'Nanuku Auberge Resort' | |
| }, | |
| { | |
| name: 'Korolevu Seaplane Base', | |
| iso_country: 'FJ', | |
| country_name: 'Fiji', | |
| iso_region: 'FJ-W', | |
| iata_code: 'KVU', | |
| municipality: 'Korolevu' | |
| }, | |
| { | |
| name: 'Diego Garcia Naval Support Facility', | |
| iso_country: 'IO', | |
| country_name: 'British Indian Ocean Territory', | |
| iso_region: 'IO-U-A', | |
| iata_code: 'NKW', | |
| municipality: 'Diego Garcia' | |
| }, | |
| { | |
| name: 'Kribi Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-SU', | |
| iata_code: 'KBI', | |
| municipality: 'Kribi' | |
| }, | |
| { | |
| name: 'Tiko Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-SW', | |
| iata_code: 'TKC', | |
| municipality: 'Tiko' | |
| }, | |
| { | |
| name: 'Douala International Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-LT', | |
| iata_code: 'DLA', | |
| municipality: 'Douala' | |
| }, | |
| { | |
| name: 'Mamfe Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-SW', | |
| iata_code: 'MMF', | |
| municipality: 'Mamfe' | |
| }, | |
| { | |
| name: 'Bali Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-NW', | |
| iata_code: 'BLC', | |
| municipality: 'Bali' | |
| }, | |
| { | |
| name: 'Ka\u00e9l\u00e9 Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-EN', | |
| iata_code: 'KLE', | |
| municipality: 'Ka\u00e9l\u00e9' | |
| }, | |
| { | |
| name: 'Batouri Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-ES', | |
| iata_code: 'OUR', | |
| municipality: 'Batouri' | |
| }, | |
| { | |
| name: 'Yagoua Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-EN', | |
| iata_code: 'GXX', | |
| municipality: 'Yagoua' | |
| }, | |
| { | |
| name: 'Salak Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-EN', | |
| iata_code: 'MVR', | |
| municipality: 'Maroua' | |
| }, | |
| { | |
| name: 'Foumban Nkounja Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-OU', | |
| iata_code: 'FOM', | |
| municipality: 'Foumban' | |
| }, | |
| { | |
| name: "N'Gaound\u00e9r\u00e9 Airport", | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-AD', | |
| iata_code: 'NGE', | |
| municipality: "N'Gaound\u00e9r\u00e9" | |
| }, | |
| { | |
| name: 'Bertoua Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-ES', | |
| iata_code: 'BTA', | |
| municipality: 'Bertoua' | |
| }, | |
| { | |
| name: 'Garoua International Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-NO', | |
| iata_code: 'GOU', | |
| municipality: 'Garoua' | |
| }, | |
| { | |
| name: 'Dschang Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-OU', | |
| iata_code: 'DSC', | |
| municipality: 'Dschang' | |
| }, | |
| { | |
| name: 'Bafoussam Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-OU', | |
| iata_code: 'BFX', | |
| municipality: 'Bafoussam' | |
| }, | |
| { | |
| name: 'Bamenda Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-NW', | |
| iata_code: 'BPC', | |
| municipality: 'Bamenda' | |
| }, | |
| { | |
| name: 'Ebolowa Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-SU', | |
| iata_code: 'EBW', | |
| municipality: 'Ebolowa' | |
| }, | |
| { | |
| name: 'Yaound\u00e9 Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-CE', | |
| iata_code: 'YAO', | |
| municipality: 'Yaound\u00e9' | |
| }, | |
| { | |
| name: 'Yaound\u00e9 Nsimalen International Airport', | |
| iso_country: 'CM', | |
| country_name: 'Cameroon', | |
| iso_region: 'CM-CE', | |
| iata_code: 'NSI', | |
| municipality: 'Yaound\u00e9' | |
| }, | |
| { | |
| name: 'Mbala Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-05', | |
| iata_code: 'MMQ', | |
| municipality: 'Mbala' | |
| }, | |
| { | |
| name: 'Chipata Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-03', | |
| iata_code: 'CIP', | |
| municipality: 'Chipata' | |
| }, | |
| { | |
| name: 'Chunga Airstrip', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-02', | |
| iata_code: 'CGX', | |
| municipality: 'Chunga' | |
| }, | |
| { | |
| name: 'Jeki Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-09', | |
| iata_code: 'JEK', | |
| municipality: 'Jeki' | |
| }, | |
| { | |
| name: 'Kasompe Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-08', | |
| iata_code: 'CGJ', | |
| municipality: 'Chingola' | |
| }, | |
| { | |
| name: 'Kalabo Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-01', | |
| iata_code: 'KLB', | |
| municipality: 'Kalabo' | |
| }, | |
| { | |
| name: 'Kaoma Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-01', | |
| iata_code: 'KMZ', | |
| municipality: 'Kaoma' | |
| }, | |
| { | |
| name: 'Kasama Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-05', | |
| iata_code: 'KAA', | |
| municipality: 'Kasama' | |
| }, | |
| { | |
| name: 'Kasaba Bay Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-05', | |
| iata_code: 'ZKB', | |
| municipality: 'Kasaba Bay' | |
| }, | |
| { | |
| name: 'Harry Mwanga Nkumbula International Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-07', | |
| iata_code: 'LVI', | |
| municipality: 'Livingstone' | |
| }, | |
| { | |
| name: 'Lukulu Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-01', | |
| iata_code: 'LXU', | |
| municipality: 'Lukulu' | |
| }, | |
| { | |
| name: 'Kenneth Kaunda International Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-09', | |
| iata_code: 'LUN', | |
| municipality: 'Lusaka' | |
| }, | |
| { | |
| name: 'Mansa Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-04', | |
| iata_code: 'MNS', | |
| municipality: 'Mansa' | |
| }, | |
| { | |
| name: 'Mfuwe Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-03', | |
| iata_code: 'MFU', | |
| municipality: 'Mfuwe' | |
| }, | |
| { | |
| name: 'Mongu Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-01', | |
| iata_code: 'MNR', | |
| municipality: 'Mongu' | |
| }, | |
| { | |
| name: 'Ngoma Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-07', | |
| iata_code: 'ZGM', | |
| municipality: 'Ngoma' | |
| }, | |
| { | |
| name: 'Royal Zambezi Lodge Airstrip', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-09', | |
| iata_code: 'RYL', | |
| municipality: 'Lower Zambezi River' | |
| }, | |
| { | |
| name: 'Simon Mwansa Kapwepwe International Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-08', | |
| iata_code: 'NLA', | |
| municipality: 'Ndola' | |
| }, | |
| { | |
| name: 'Senanga Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-01', | |
| iata_code: 'SXG', | |
| municipality: 'Senanga' | |
| }, | |
| { | |
| name: 'Southdowns Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-08', | |
| iata_code: 'KIW', | |
| municipality: 'Kitwe' | |
| }, | |
| { | |
| name: 'Sesheke Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-01', | |
| iata_code: 'SJQ', | |
| municipality: 'Sesheke' | |
| }, | |
| { | |
| name: 'Solwesi Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-06', | |
| iata_code: 'SLI', | |
| municipality: 'Solwesi' | |
| }, | |
| { | |
| name: 'Flat Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'FLT', | |
| municipality: 'Flat' | |
| }, | |
| { | |
| name: 'Zambezi Airport', | |
| iso_country: 'ZM', | |
| country_name: 'Zambia', | |
| iso_region: 'ZM-06', | |
| iata_code: 'BBZ', | |
| municipality: 'Zambezi' | |
| }, | |
| { | |
| name: 'Ulithi Airport', | |
| iso_country: 'FM', | |
| country_name: 'Micronesia, Federated States of', | |
| iso_region: 'FM-YAP', | |
| iata_code: 'ULI', | |
| municipality: 'Falalop Island' | |
| }, | |
| { | |
| name: 'Prince Said Ibrahim International Airport', | |
| iso_country: 'KM', | |
| country_name: 'Comoros', | |
| iso_region: 'KM-G', | |
| iata_code: 'HAH', | |
| municipality: 'Moroni' | |
| }, | |
| { | |
| name: 'Moh\u00e9li Bandar Es Eslam Airport', | |
| iso_country: 'KM', | |
| country_name: 'Comoros', | |
| iso_region: 'KM-M', | |
| iata_code: 'NWA', | |
| municipality: 'Fomboni' | |
| }, | |
| { | |
| name: 'Ouani Airport', | |
| iso_country: 'KM', | |
| country_name: 'Comoros', | |
| iso_region: 'KM-A', | |
| iata_code: 'AJN', | |
| municipality: 'Ouani' | |
| }, | |
| { | |
| name: 'Dzaoudzi Pamandzi International Airport', | |
| iso_country: 'YT', | |
| country_name: 'Mayotte', | |
| iso_region: 'YT-U-A', | |
| iata_code: 'DZA', | |
| municipality: 'Dzaoudzi' | |
| }, | |
| { | |
| name: 'Roland Garros Airport', | |
| iso_country: 'RE', | |
| country_name: 'R\u00e9union', | |
| iso_region: 'RE-SD', | |
| iata_code: 'RUN', | |
| municipality: 'Sainte-Marie' | |
| }, | |
| { | |
| name: 'Pierrefonds Airport', | |
| iso_country: 'RE', | |
| country_name: 'R\u00e9union', | |
| iso_region: 'RE-SR', | |
| iata_code: 'ZSE', | |
| municipality: 'Saint-Pierre' | |
| }, | |
| { | |
| name: 'Malaimbandy Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'WML', | |
| municipality: 'Malaimbandy' | |
| }, | |
| { | |
| name: 'Antsirabe Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-T', | |
| iata_code: 'ATJ', | |
| municipality: 'Antsirabe' | |
| }, | |
| { | |
| name: 'Antsalova Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'WAQ', | |
| municipality: 'Antsalova' | |
| }, | |
| { | |
| name: 'Mahanoro Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'VVB', | |
| municipality: 'Mahanoro' | |
| }, | |
| { | |
| name: 'Ivato Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-T', | |
| iata_code: 'TNR', | |
| municipality: 'Antananarivo' | |
| }, | |
| { | |
| name: 'Ankavandra Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'JVA', | |
| municipality: 'Ankavandra' | |
| }, | |
| { | |
| name: 'Belo sur Tsiribihina Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'BMD', | |
| municipality: 'Belo sur Tsiribihina' | |
| }, | |
| { | |
| name: 'Miandrivazo Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'ZVA', | |
| municipality: 'Miandrivazo' | |
| }, | |
| { | |
| name: 'Maintirano Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'MXT', | |
| municipality: 'Maintirano' | |
| }, | |
| { | |
| name: 'Atsinanana Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'ILK', | |
| municipality: 'Ilaka' | |
| }, | |
| { | |
| name: 'Morafenobe Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'TVA', | |
| municipality: 'Morafenobe' | |
| }, | |
| { | |
| name: 'Sainte Marie Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'SMS', | |
| municipality: 'Vohilava' | |
| }, | |
| { | |
| name: 'Toamasina Ambalamanasy Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'TMM', | |
| municipality: 'Toamasina' | |
| }, | |
| { | |
| name: 'Tambohorano Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'WTA', | |
| municipality: 'Tambohorano' | |
| }, | |
| { | |
| name: 'Morondava Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'MOQ', | |
| municipality: 'Morondava' | |
| }, | |
| { | |
| name: 'Tsiroanomandidy Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-T', | |
| iata_code: 'WTS', | |
| municipality: 'Tsiroanomandidy' | |
| }, | |
| { | |
| name: 'Vatomandry Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'VAT', | |
| municipality: 'Vatomandry' | |
| }, | |
| { | |
| name: 'Ambatondrazaka Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'WAM', | |
| municipality: 'Ambatondrazaka' | |
| }, | |
| { | |
| name: 'Arrachart Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'DIE', | |
| municipality: 'Antisiranana' | |
| }, | |
| { | |
| name: 'Ankaizina Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'WBE', | |
| municipality: 'Bealanana' | |
| }, | |
| { | |
| name: 'Mananara Nord Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'WMR', | |
| municipality: 'Mananara Nord' | |
| }, | |
| { | |
| name: 'Andapa Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'ZWA', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Ambilobe Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'AMB', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Avaratra Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'WBD', | |
| municipality: 'Befandriana' | |
| }, | |
| { | |
| name: 'Port Berg\u00e9 Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'WPB', | |
| municipality: 'Port Berg\u00e9' | |
| }, | |
| { | |
| name: 'Antsirabe Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'ANM', | |
| municipality: 'Antsirabe' | |
| }, | |
| { | |
| name: 'Analalava Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'HVA', | |
| municipality: 'Analalava' | |
| }, | |
| { | |
| name: 'Amborovy Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'MJN', | |
| municipality: 'Mahajanga' | |
| }, | |
| { | |
| name: 'Fascene Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'NOS', | |
| municipality: 'Nosy Be' | |
| }, | |
| { | |
| name: 'Soalala Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'DWB', | |
| municipality: 'Soalala' | |
| }, | |
| { | |
| name: 'Mampikony Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'WMP', | |
| municipality: 'Mampikony' | |
| }, | |
| { | |
| name: 'Besalampy Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'BPY', | |
| municipality: 'Besalampy' | |
| }, | |
| { | |
| name: 'Maroantsetra Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'WMN', | |
| municipality: 'Maroantsetra' | |
| }, | |
| { | |
| name: 'Sambava Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'SVB', | |
| municipality: 'Sambava' | |
| }, | |
| { | |
| name: 'Tsaratanana Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'TTS', | |
| municipality: 'Tsaratanana' | |
| }, | |
| { | |
| name: 'Vohemar Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'VOH', | |
| municipality: 'Vohemar' | |
| }, | |
| { | |
| name: 'Ambalabe Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'WAI', | |
| municipality: 'Antsohihy' | |
| }, | |
| { | |
| name: 'Mandritsara Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'WMA', | |
| municipality: 'Mandritsara' | |
| }, | |
| { | |
| name: 'Ampampamena Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'IVA', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Antsoa Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'WBO', | |
| municipality: 'Beroroha' | |
| }, | |
| { | |
| name: 'Mandabe Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'WMD', | |
| municipality: 'Mandabe' | |
| }, | |
| { | |
| name: 'T\u00f4lanaro Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'FTU', | |
| municipality: 'T\u00f4lanaro' | |
| }, | |
| { | |
| name: 'Fianarantsoa Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-F', | |
| iata_code: 'WFI', | |
| municipality: 'Fianarantsoa' | |
| }, | |
| { | |
| name: 'Farafangana Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-F', | |
| iata_code: 'RVA', | |
| municipality: 'Farafangana' | |
| }, | |
| { | |
| name: 'Ihosy Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-F', | |
| iata_code: 'IHO', | |
| municipality: 'Ihosy' | |
| }, | |
| { | |
| name: 'Manja Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'MJA', | |
| municipality: 'Manja' | |
| }, | |
| { | |
| name: 'Manakara Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-F', | |
| iata_code: 'WVK', | |
| municipality: 'Manakara' | |
| }, | |
| { | |
| name: 'Bekily Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'OVA', | |
| municipality: 'Bekily' | |
| }, | |
| { | |
| name: 'Mananjary Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-F', | |
| iata_code: 'MNJ', | |
| municipality: 'Mananjary' | |
| }, | |
| { | |
| name: 'Samangoky Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'TDV', | |
| municipality: 'Tanandava' | |
| }, | |
| { | |
| name: 'Morombe Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'MXM', | |
| municipality: 'Morombe' | |
| }, | |
| { | |
| name: 'Toliara Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'TLE', | |
| municipality: 'Toliara' | |
| }, | |
| { | |
| name: 'Vangaindrano Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-F', | |
| iata_code: 'VND', | |
| municipality: 'Vangaindrano' | |
| }, | |
| { | |
| name: 'Betioky Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'BKU', | |
| municipality: 'Betioky' | |
| }, | |
| { | |
| name: 'Ampanihy Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'AMP', | |
| municipality: 'Ampanihy' | |
| }, | |
| { | |
| name: 'Ankazoabo Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U', | |
| iata_code: 'WAK', | |
| municipality: 'Ankazoabo' | |
| }, | |
| { | |
| name: 'Ambriz Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-BGO', | |
| iata_code: 'AZZ', | |
| municipality: 'Ambriz' | |
| }, | |
| { | |
| name: 'Mbanza Congo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-ZAI', | |
| iata_code: 'SSY', | |
| municipality: 'Mbanza Congo' | |
| }, | |
| { | |
| name: 'Benguela 17th of September Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-BGU', | |
| iata_code: 'BUG', | |
| municipality: 'Benguela' | |
| }, | |
| { | |
| name: 'Lumbala Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-MOX', | |
| iata_code: 'GGC', | |
| municipality: "Lumbala N'guimbo" | |
| }, | |
| { | |
| name: 'Cabinda Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CAB', | |
| iata_code: 'CAB', | |
| municipality: 'Cabinda' | |
| }, | |
| { | |
| name: 'Cafunfo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LNO', | |
| iata_code: 'CFF', | |
| municipality: 'Cafunfo' | |
| }, | |
| { | |
| name: 'Chitato Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LNO', | |
| iata_code: 'PGI', | |
| municipality: 'Chitato' | |
| }, | |
| { | |
| name: 'Catumbela Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-BGU', | |
| iata_code: 'CBT', | |
| municipality: 'Catumbela' | |
| }, | |
| { | |
| name: 'Cuito Cuanavale Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CCU', | |
| iata_code: 'CTI', | |
| municipality: 'Cuito Cuanavale' | |
| }, | |
| { | |
| name: 'Camaxilo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LNO', | |
| iata_code: 'CXM', | |
| municipality: 'Camaxilo' | |
| }, | |
| { | |
| name: 'Cazombo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-MOX', | |
| iata_code: 'CAV', | |
| municipality: 'Cazombo' | |
| }, | |
| { | |
| name: 'Funadhoo Airport', | |
| iso_country: 'MV', | |
| country_name: 'Maldives', | |
| iso_region: 'MV-24', | |
| iata_code: 'FND', | |
| municipality: 'Funadhoo' | |
| }, | |
| { | |
| name: 'Dundo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LNO', | |
| iata_code: 'DUE', | |
| municipality: 'Chitato' | |
| }, | |
| { | |
| name: 'Fane Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'FNE', | |
| municipality: 'Fane Mission' | |
| }, | |
| { | |
| name: 'Ngjiva Pereira Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CNN', | |
| iata_code: 'VPE', | |
| municipality: 'Ngiva' | |
| }, | |
| { | |
| name: 'Nova Lisboa Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-HUA', | |
| iata_code: 'NOV', | |
| municipality: 'Huambo' | |
| }, | |
| { | |
| name: 'Kuito Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-BIE', | |
| iata_code: 'SVP', | |
| municipality: 'Kuito' | |
| }, | |
| { | |
| name: 'Lobito Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-BGU', | |
| iata_code: 'LLT', | |
| municipality: 'Lobito' | |
| }, | |
| { | |
| name: 'Lucapa Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LNO', | |
| iata_code: 'LBZ', | |
| municipality: 'Lucapa' | |
| }, | |
| { | |
| name: 'Quatro de Fevereiro International Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LUA', | |
| iata_code: 'LAD', | |
| municipality: 'Luanda' | |
| }, | |
| { | |
| name: 'Luzamba Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LNO', | |
| iata_code: 'LZM', | |
| municipality: 'Luzamba' | |
| }, | |
| { | |
| name: 'Malanje Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-MAL', | |
| iata_code: 'MEG', | |
| municipality: 'Malanje' | |
| }, | |
| { | |
| name: 'Menongue Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CCU', | |
| iata_code: 'SPP', | |
| municipality: 'Menongue' | |
| }, | |
| { | |
| name: 'Welwitschia Mirabilis International Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-NAM', | |
| iata_code: 'MSZ', | |
| municipality: 'Mo\u00e7\u00e2medes' | |
| }, | |
| { | |
| name: 'Negage Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-UIG', | |
| iata_code: 'GXG', | |
| municipality: 'Negage' | |
| }, | |
| { | |
| name: 'Porto Amboim Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CUS', | |
| iata_code: 'PBN', | |
| municipality: 'Port Amboim' | |
| }, | |
| { | |
| name: 'Saurimo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LSU', | |
| iata_code: 'VHC', | |
| municipality: 'Saurimo' | |
| }, | |
| { | |
| name: 'Soyo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-ZAI', | |
| iata_code: 'SZA', | |
| municipality: 'Soyo' | |
| }, | |
| { | |
| name: 'Sumbe Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CUS', | |
| iata_code: 'NDD', | |
| municipality: 'Sumbe' | |
| }, | |
| { | |
| name: 'Luau Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-MOX', | |
| iata_code: 'UAL', | |
| municipality: 'Luau' | |
| }, | |
| { | |
| name: 'Lubango Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-HUI', | |
| iata_code: 'SDD', | |
| municipality: 'Lubango' | |
| }, | |
| { | |
| name: 'Luena Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-MOX', | |
| iata_code: 'LUO', | |
| municipality: 'Luena' | |
| }, | |
| { | |
| name: 'Uige Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-UIG', | |
| iata_code: 'UGO', | |
| municipality: 'Uige' | |
| }, | |
| { | |
| name: 'Waco Kungo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CUS', | |
| iata_code: 'CEO', | |
| municipality: 'Waco Kungo' | |
| }, | |
| { | |
| name: 'Xangongo Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-CNN', | |
| iata_code: 'XGN', | |
| municipality: 'Xangongo' | |
| }, | |
| { | |
| name: "N'zeto Airport", | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-ZAI', | |
| iata_code: 'ARZ', | |
| municipality: "N'zeto" | |
| }, | |
| { | |
| name: 'Nzagi Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LNO', | |
| iata_code: 'NZA', | |
| municipality: 'Nzagi' | |
| }, | |
| { | |
| name: 'Booue Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-6', | |
| iata_code: 'BGB', | |
| municipality: 'Booue' | |
| }, | |
| { | |
| name: 'Ndende Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-4', | |
| iata_code: 'KDN', | |
| municipality: 'Ndende' | |
| }, | |
| { | |
| name: 'Fougamou Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-4', | |
| iata_code: 'FOU', | |
| municipality: 'Fougamou' | |
| }, | |
| { | |
| name: "M'Bigou Airport", | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-4', | |
| iata_code: 'MBC', | |
| municipality: "M'Bigou" | |
| }, | |
| { | |
| name: 'Moabi Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-5', | |
| iata_code: 'MGX', | |
| municipality: 'Moabi' | |
| }, | |
| { | |
| name: 'Ville Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-3', | |
| iata_code: 'KDJ', | |
| municipality: "N'Djol\u00e9" | |
| }, | |
| { | |
| name: 'Koulamoutou Mabimbi Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-7', | |
| iata_code: 'KOU', | |
| municipality: 'Koulamoutou' | |
| }, | |
| { | |
| name: 'Mouilla Ville Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-4', | |
| iata_code: 'MJL', | |
| municipality: 'Mouila' | |
| }, | |
| { | |
| name: 'Oyem Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-9', | |
| iata_code: 'OYE', | |
| municipality: 'Oyem' | |
| }, | |
| { | |
| name: 'Okondja Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-2', | |
| iata_code: 'OKN', | |
| municipality: 'Okondja' | |
| }, | |
| { | |
| name: 'Lambarene Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-3', | |
| iata_code: 'LBQ', | |
| municipality: 'Lambarene' | |
| }, | |
| { | |
| name: 'Minvoul Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-9', | |
| iata_code: 'MVX', | |
| municipality: 'Minvoul' | |
| }, | |
| { | |
| name: 'Bitam Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-9', | |
| iata_code: 'BMM', | |
| municipality: 'Bitam' | |
| }, | |
| { | |
| name: 'Moanda Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-2', | |
| iata_code: 'MFF', | |
| municipality: 'Moanda' | |
| }, | |
| { | |
| name: 'Mekambo Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-6', | |
| iata_code: 'MKB', | |
| municipality: 'Mekambo' | |
| }, | |
| { | |
| name: 'Port Gentil Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-8', | |
| iata_code: 'POG', | |
| municipality: 'Port Gentil' | |
| }, | |
| { | |
| name: 'Omboue Hospital Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-8', | |
| iata_code: 'OMB', | |
| municipality: 'Omboue' | |
| }, | |
| { | |
| name: 'Tchongorove Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-8', | |
| iata_code: 'IGE', | |
| municipality: 'Iguela' | |
| }, | |
| { | |
| name: 'Makokou Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-6', | |
| iata_code: 'MKU', | |
| municipality: 'Makokou' | |
| }, | |
| { | |
| name: "Libreville Leon M'ba International Airport", | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-1', | |
| iata_code: 'LBV', | |
| municipality: 'Libreville' | |
| }, | |
| { | |
| name: 'Mitzic Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-9', | |
| iata_code: 'MZC', | |
| municipality: 'Mitzic' | |
| }, | |
| { | |
| name: "M'Vengue El Hadj Omar Bongo Ondimba International Airport", | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-2', | |
| iata_code: 'MVB', | |
| municipality: 'Franceville' | |
| }, | |
| { | |
| name: 'Lastourville Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-7', | |
| iata_code: 'LTL', | |
| municipality: 'Lastourville' | |
| }, | |
| { | |
| name: 'Tchibanga Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-5', | |
| iata_code: 'TCH', | |
| municipality: 'Tchibanga' | |
| }, | |
| { | |
| name: 'Mayumba Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-5', | |
| iata_code: 'MYB', | |
| municipality: 'Mayumba' | |
| }, | |
| { | |
| name: 'Foya Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-LO', | |
| iata_code: 'FOY', | |
| municipality: 'Foya' | |
| }, | |
| { | |
| name: 'Principe Airport', | |
| iso_country: 'ST', | |
| country_name: 'Sao Tome and Principe', | |
| iso_region: 'ST-P', | |
| iata_code: 'PCP', | |
| municipality: 'S\u00e3o Tom\u00e9 & Pr\u00edncipe' | |
| }, | |
| { | |
| name: 'S\u00e3o Tom\u00e9 International Airport', | |
| iso_country: 'ST', | |
| country_name: 'Sao Tome and Principe', | |
| iso_region: 'ST-01', | |
| iata_code: 'TMS', | |
| municipality: 'S\u00e3o Tom\u00e9' | |
| }, | |
| { | |
| name: 'Angoche Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-N', | |
| iata_code: 'ANO', | |
| municipality: 'Angoche' | |
| }, | |
| { | |
| name: 'Beira Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-S', | |
| iata_code: 'BEW', | |
| municipality: 'Beira' | |
| }, | |
| { | |
| name: 'Cuamba Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-A', | |
| iata_code: 'FXO', | |
| municipality: 'Cuamba' | |
| }, | |
| { | |
| name: 'Chimoio Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-B', | |
| iata_code: 'VPY', | |
| municipality: 'Chimoio' | |
| }, | |
| { | |
| name: 'Inhaca Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-L', | |
| iata_code: 'IHC', | |
| municipality: 'Inhaca' | |
| }, | |
| { | |
| name: 'Inhambane Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-I', | |
| iata_code: 'INH', | |
| municipality: 'Inhambane' | |
| }, | |
| { | |
| name: 'Lichinga Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-A', | |
| iata_code: 'VXC', | |
| municipality: 'Lichinga' | |
| }, | |
| { | |
| name: 'Lumbo Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-N', | |
| iata_code: 'LFB', | |
| municipality: 'Lumbo' | |
| }, | |
| { | |
| name: 'Maputo Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-MPM', | |
| iata_code: 'MPM', | |
| municipality: 'Maputo' | |
| }, | |
| { | |
| name: 'Mueda Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-P', | |
| iata_code: 'MUD', | |
| municipality: 'Mueda' | |
| }, | |
| { | |
| name: 'Moc\u00edmboa da Praia Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-P', | |
| iata_code: 'MZB', | |
| municipality: 'Moc\u00edmboa da Praia' | |
| }, | |
| { | |
| name: 'Nacala Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-N', | |
| iata_code: 'MNC', | |
| municipality: 'Nacala' | |
| }, | |
| { | |
| name: 'Nampula Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-N', | |
| iata_code: 'APL', | |
| municipality: 'Nampula' | |
| }, | |
| { | |
| name: 'Pemba Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-P', | |
| iata_code: 'POL', | |
| municipality: 'Pemba / Porto Amelia' | |
| }, | |
| { | |
| name: 'Ponta do Ouro Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-L', | |
| iata_code: 'PDD', | |
| municipality: 'Ponta do Ouro' | |
| }, | |
| { | |
| name: 'Quelimane Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-Q', | |
| iata_code: 'UEL', | |
| municipality: 'Quelimane' | |
| }, | |
| { | |
| name: 'Chingozi Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-T', | |
| iata_code: 'TET', | |
| municipality: 'Tete' | |
| }, | |
| { | |
| name: 'Vilankulo Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-I', | |
| iata_code: 'VNX', | |
| municipality: 'Vilanculo' | |
| }, | |
| { | |
| name: 'Xai-Xai Chongoene Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-G', | |
| iata_code: 'VJB', | |
| municipality: 'Xai-Xai' | |
| }, | |
| { | |
| name: 'Desroches Airport', | |
| iso_country: 'SC', | |
| country_name: 'Seychelles', | |
| iso_region: 'SC-26', | |
| iata_code: 'DES', | |
| municipality: 'Desroches Island' | |
| }, | |
| { | |
| name: 'Seychelles International Airport', | |
| iso_country: 'SC', | |
| country_name: 'Seychelles', | |
| iso_region: 'SC-20', | |
| iata_code: 'SEZ', | |
| municipality: 'Mahe Island' | |
| }, | |
| { | |
| name: 'Fossil Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'FSL', | |
| municipality: 'Fossil Downs Station' | |
| }, | |
| { | |
| name: 'Praslin Island Airport', | |
| iso_country: 'SC', | |
| country_name: 'Seychelles', | |
| iso_region: 'SC-14', | |
| iata_code: 'PRI', | |
| municipality: 'Praslin Island' | |
| }, | |
| { | |
| name: 'Bird Island Airport', | |
| iso_country: 'SC', | |
| country_name: 'Seychelles', | |
| iso_region: 'SC-15', | |
| iata_code: 'BDI', | |
| municipality: 'Bird Island' | |
| }, | |
| { | |
| name: 'Denis Island Airport', | |
| iso_country: 'SC', | |
| country_name: 'Seychelles', | |
| iso_region: 'SC-15', | |
| iata_code: 'DEI', | |
| municipality: 'Denis Island' | |
| }, | |
| { | |
| name: 'Fr\u00e9gate Island Airport (UNUSABLE)', | |
| iso_country: 'SC', | |
| country_name: 'Seychelles', | |
| iso_region: 'SC-15', | |
| iata_code: 'FRK', | |
| municipality: 'Fr\u00e9gate Island' | |
| }, | |
| { | |
| name: 'Sarh Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-MC', | |
| iata_code: 'SRH', | |
| municipality: 'Sarh' | |
| }, | |
| { | |
| name: 'Bongor Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-ME', | |
| iata_code: 'OGR', | |
| municipality: 'Bongor' | |
| }, | |
| { | |
| name: 'Abeche Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-OD', | |
| iata_code: 'AEH', | |
| municipality: 'Abeche' | |
| }, | |
| { | |
| name: 'Moundou Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-LO', | |
| iata_code: 'MQQ', | |
| municipality: 'Moundou' | |
| }, | |
| { | |
| name: 'Lai Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-TA', | |
| iata_code: 'LTC', | |
| municipality: 'Lai' | |
| }, | |
| { | |
| name: 'Ati Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-BA', | |
| iata_code: 'ATV', | |
| municipality: 'Ati' | |
| }, | |
| { | |
| name: "N'Djamena International Airport", | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-ND', | |
| iata_code: 'NDJ', | |
| municipality: "N'Djamena" | |
| }, | |
| { | |
| name: 'Bokoro Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-HL', | |
| iata_code: 'BKR', | |
| municipality: 'Bokoro' | |
| }, | |
| { | |
| name: 'Bol-Berim Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-LC', | |
| iata_code: 'OTC', | |
| municipality: 'Bol' | |
| }, | |
| { | |
| name: 'Mongo Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-GR', | |
| iata_code: 'MVO', | |
| municipality: 'Mongo' | |
| }, | |
| { | |
| name: 'Am Timan Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-SA', | |
| iata_code: 'AMC', | |
| municipality: 'Am Timan' | |
| }, | |
| { | |
| name: 'Pala Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-MO', | |
| iata_code: 'PLF', | |
| municipality: 'Pala' | |
| }, | |
| { | |
| name: 'Bousso Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-CB', | |
| iata_code: 'OUT', | |
| municipality: 'Bousso' | |
| }, | |
| { | |
| name: 'Mao Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-KA', | |
| iata_code: 'AMO', | |
| municipality: 'Mao' | |
| }, | |
| { | |
| name: 'Faya-Largeau Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-BO', | |
| iata_code: 'FYT', | |
| municipality: 'Faya-Largeau' | |
| }, | |
| { | |
| name: 'Fulleborn Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'FUB', | |
| municipality: 'Fulleborn' | |
| }, | |
| { | |
| name: 'Bumi Hills Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MW', | |
| iata_code: 'BZH', | |
| municipality: 'Bumi' | |
| }, | |
| { | |
| name: 'Joshua Mqabuko Nkomo International Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-BU', | |
| iata_code: 'BUQ', | |
| municipality: 'Bulawayo' | |
| }, | |
| { | |
| name: 'Chipinge Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MA', | |
| iata_code: 'CHJ', | |
| municipality: 'Chipinge' | |
| }, | |
| { | |
| name: 'Buffalo Range Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MV', | |
| iata_code: 'BFO', | |
| municipality: 'Chiredzi' | |
| }, | |
| { | |
| name: 'Victoria Falls International Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MN', | |
| iata_code: 'VFA', | |
| municipality: 'Victoria Falls' | |
| }, | |
| { | |
| name: 'Robert Gabriel Mugabe International Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-HA', | |
| iata_code: 'HRE', | |
| municipality: 'Harare' | |
| }, | |
| { | |
| name: 'Kariba International Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MW', | |
| iata_code: 'KAB', | |
| municipality: 'Kariba' | |
| }, | |
| { | |
| name: 'Mahenye Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MA', | |
| iata_code: 'MJW', | |
| municipality: 'Gonarezhou National Park' | |
| }, | |
| { | |
| name: 'Mutare Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MA', | |
| iata_code: 'UTA', | |
| municipality: 'Mutare' | |
| }, | |
| { | |
| name: 'Masvingo International Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MV', | |
| iata_code: 'MVZ', | |
| municipality: 'Masvingo' | |
| }, | |
| { | |
| name: 'Gweru - Thornhill Air Base', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MI', | |
| iata_code: 'GWE', | |
| municipality: 'Gweru' | |
| }, | |
| { | |
| name: 'Hwange National Park Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MN', | |
| iata_code: 'HWN', | |
| municipality: 'Hwange' | |
| }, | |
| { | |
| name: 'Hwange (Town) Airport', | |
| iso_country: 'ZW', | |
| country_name: 'Zimbabwe', | |
| iso_region: 'ZW-MN', | |
| iata_code: 'WKI', | |
| municipality: 'Hwange' | |
| }, | |
| { | |
| name: 'Chelinda Malawi Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-RU', | |
| iata_code: 'CEH', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Chileka International Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-BL', | |
| iata_code: 'BLZ', | |
| municipality: 'Blantyre' | |
| }, | |
| { | |
| name: 'Club Makokola Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-MG', | |
| iata_code: 'CMK', | |
| municipality: 'Club Makokola' | |
| }, | |
| { | |
| name: 'Dwangwa Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-NK', | |
| iata_code: 'DWA', | |
| municipality: 'Dwangwa' | |
| }, | |
| { | |
| name: 'Karonga Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-KR', | |
| iata_code: 'KGJ', | |
| municipality: 'Karonga' | |
| }, | |
| { | |
| name: 'Kasungu Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-KS', | |
| iata_code: 'KBQ', | |
| municipality: 'Kasungu' | |
| }, | |
| { | |
| name: 'Lilongwe International Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-LI', | |
| iata_code: 'LLW', | |
| municipality: 'Lilongwe' | |
| }, | |
| { | |
| name: 'Likoma Island Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-LK', | |
| iata_code: 'LIX', | |
| municipality: 'Likoma Island' | |
| }, | |
| { | |
| name: 'Mangochi Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-MG', | |
| iata_code: 'MAI', | |
| municipality: 'Mangochi' | |
| }, | |
| { | |
| name: 'Monkey Bay Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-MG', | |
| iata_code: 'MYZ', | |
| municipality: 'Monkey Bay' | |
| }, | |
| { | |
| name: 'Salima Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-SA', | |
| iata_code: 'LMB', | |
| municipality: 'Salima' | |
| }, | |
| { | |
| name: 'Mzuzu Airport', | |
| iso_country: 'MW', | |
| country_name: 'Malawi', | |
| iso_region: 'MW-MZ', | |
| iata_code: 'ZZU', | |
| municipality: 'Mzuzu' | |
| }, | |
| { | |
| name: 'Lebakeng Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-H', | |
| iata_code: 'LEF', | |
| municipality: 'Lebakeng' | |
| }, | |
| { | |
| name: 'Leribe Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-C', | |
| iata_code: 'LRB', | |
| municipality: 'Leribe' | |
| }, | |
| { | |
| name: 'Lesobeng Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-F', | |
| iata_code: 'LES', | |
| municipality: 'Lesobeng' | |
| }, | |
| { | |
| name: 'Matsaile Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-K', | |
| iata_code: 'MSG', | |
| municipality: 'Matsaile' | |
| }, | |
| { | |
| name: 'Mafeteng Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-E', | |
| iata_code: 'MFC', | |
| municipality: 'Mafeteng' | |
| }, | |
| { | |
| name: 'Mokhotlong Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-J', | |
| iata_code: 'MKH', | |
| municipality: 'Mokhotlong' | |
| }, | |
| { | |
| name: 'Moshoeshoe I International Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-A', | |
| iata_code: 'MSU', | |
| municipality: 'Maseru' | |
| }, | |
| { | |
| name: 'Nkaus Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-F', | |
| iata_code: 'NKU', | |
| municipality: 'Nkaus' | |
| }, | |
| { | |
| name: 'Pelaneng Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-C', | |
| iata_code: 'PEL', | |
| municipality: 'Pelaneng' | |
| }, | |
| { | |
| name: 'Quthing Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-G', | |
| iata_code: 'UTG', | |
| municipality: 'Quthing' | |
| }, | |
| { | |
| name: "Qacha's Nek Airport", | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-H', | |
| iata_code: 'UNE', | |
| municipality: "Qacha's Nek" | |
| }, | |
| { | |
| name: 'Sehonghong Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-K', | |
| iata_code: 'SHK', | |
| municipality: 'Sehonghong' | |
| }, | |
| { | |
| name: 'Sekakes Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-H', | |
| iata_code: 'SKQ', | |
| municipality: 'Sekakes' | |
| }, | |
| { | |
| name: 'Semonkong Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-A', | |
| iata_code: 'SOK', | |
| municipality: 'Semonkong' | |
| }, | |
| { | |
| name: 'Seshutes Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-C', | |
| iata_code: 'SHZ', | |
| municipality: 'Seshutes' | |
| }, | |
| { | |
| name: 'Thaba-Tseka Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-K', | |
| iata_code: 'THB', | |
| municipality: 'Thaba-Tseka' | |
| }, | |
| { | |
| name: 'Tlokoeng Airport', | |
| iso_country: 'LS', | |
| country_name: 'Lesotho', | |
| iso_region: 'LS-J', | |
| iata_code: 'TKO', | |
| municipality: 'Tlokoeng' | |
| }, | |
| { | |
| name: 'Ai-Ais Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KA', | |
| iata_code: 'AIW', | |
| municipality: 'Ai-Ais' | |
| }, | |
| { | |
| name: 'Arandis Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-ER', | |
| iata_code: 'ADI', | |
| municipality: 'Arandis' | |
| }, | |
| { | |
| name: 'Gobabis Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OH', | |
| iata_code: 'GOG', | |
| municipality: 'Gobabis' | |
| }, | |
| { | |
| name: 'Grootfontein Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OD', | |
| iata_code: 'GFY', | |
| municipality: 'Grootfontein' | |
| }, | |
| { | |
| name: 'Halali Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OT', | |
| iata_code: 'HAL', | |
| municipality: 'Halali' | |
| }, | |
| { | |
| name: 'Karasburg Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KA', | |
| iata_code: 'KAS', | |
| municipality: 'Karasburg' | |
| }, | |
| { | |
| name: 'Katima Mulilo Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-CA', | |
| iata_code: 'MPA', | |
| municipality: 'Mpacha' | |
| }, | |
| { | |
| name: 'Keetmanshoop Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KA', | |
| iata_code: 'KMP', | |
| municipality: 'Keetmanshoop' | |
| }, | |
| { | |
| name: 'Lianshulu Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-CA', | |
| iata_code: 'LHU', | |
| municipality: 'Lianshulu Lodge' | |
| }, | |
| { | |
| name: 'Luderitz Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KA', | |
| iata_code: 'LUD', | |
| municipality: 'Luderitz' | |
| }, | |
| { | |
| name: 'Mount Etjo Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OD', | |
| iata_code: 'MJO', | |
| municipality: 'Mount Etjo Safari Lodge' | |
| }, | |
| { | |
| name: 'Midgard Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OD', | |
| iata_code: 'MQG', | |
| municipality: 'Midgard' | |
| }, | |
| { | |
| name: 'Mokuti Lodge Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OT', | |
| iata_code: 'OKU', | |
| municipality: 'Mokuti Lodge' | |
| }, | |
| { | |
| name: 'Namutoni Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OT', | |
| iata_code: 'NNI', | |
| municipality: 'Namutoni' | |
| }, | |
| { | |
| name: 'Ondangwa Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-ON', | |
| iata_code: 'OND', | |
| municipality: 'Ondangwa' | |
| }, | |
| { | |
| name: 'Omega Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KE', | |
| iata_code: 'OMG', | |
| municipality: 'Omega' | |
| }, | |
| { | |
| name: 'Oranjemund Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KA', | |
| iata_code: 'OMD', | |
| municipality: 'Oranjemund' | |
| }, | |
| { | |
| name: 'Okaukuejo Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KU', | |
| iata_code: 'OKF', | |
| municipality: 'Okaukuejo' | |
| }, | |
| { | |
| name: 'Opuwa Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KU', | |
| iata_code: 'OPW', | |
| municipality: 'Opuwa' | |
| }, | |
| { | |
| name: 'Oshakati Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-ON', | |
| iata_code: 'OHI', | |
| municipality: 'Oshakati' | |
| }, | |
| { | |
| name: 'Otjiwarongo Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OD', | |
| iata_code: 'OTJ', | |
| municipality: 'Otjiwarongo' | |
| }, | |
| { | |
| name: 'Rundu Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KE', | |
| iata_code: 'NDU', | |
| municipality: 'Rundu' | |
| }, | |
| { | |
| name: 'Skorpion Mine Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KA', | |
| iata_code: 'RHN', | |
| municipality: 'Rosh Pinah' | |
| }, | |
| { | |
| name: 'Swakopmund Municipal Aerodrome', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-ER', | |
| iata_code: 'SWP', | |
| municipality: 'Swakopmund' | |
| }, | |
| { | |
| name: 'Sesriem Airstrip', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-HA', | |
| iata_code: 'SZM', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Terrace Bay Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KU', | |
| iata_code: 'TCY', | |
| municipality: 'Terrace Bay' | |
| }, | |
| { | |
| name: 'Tsumeb Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-OT', | |
| iata_code: 'TSB', | |
| municipality: 'Tsumeb' | |
| }, | |
| { | |
| name: 'Walvis Bay Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-ER', | |
| iata_code: 'WVB', | |
| municipality: 'Walvis Bay' | |
| }, | |
| { | |
| name: 'Eros Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KH', | |
| iata_code: 'ERS', | |
| municipality: 'Windhoek' | |
| }, | |
| { | |
| name: 'Hosea Kutako International Airport', | |
| iso_country: 'NA', | |
| country_name: 'Namibia', | |
| iso_region: 'NA-KH', | |
| iata_code: 'WDH', | |
| municipality: 'Windhoek' | |
| }, | |
| { | |
| name: 'Ndjili International Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KN', | |
| iata_code: 'FIH', | |
| municipality: 'Kinshasa' | |
| }, | |
| { | |
| name: 'Ndolo Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KN', | |
| iata_code: 'NLO', | |
| municipality: "N'dolo" | |
| }, | |
| { | |
| name: 'Muanda Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-BC', | |
| iata_code: 'MNB', | |
| municipality: 'Muanda' | |
| }, | |
| { | |
| name: 'Boma Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-BC', | |
| iata_code: 'BOA', | |
| municipality: 'Boma' | |
| }, | |
| { | |
| name: 'Luozi Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-BC', | |
| iata_code: 'LZI', | |
| municipality: 'Luozi' | |
| }, | |
| { | |
| name: 'Tshimpi Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-BC', | |
| iata_code: 'MAT', | |
| municipality: 'Matadi' | |
| }, | |
| { | |
| name: "N'Kolo-Fuma Airport", | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-BC', | |
| iata_code: 'NKL', | |
| municipality: "N'Kolo-Fuma" | |
| }, | |
| { | |
| name: 'Inongo Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-MN', | |
| iata_code: 'INO', | |
| municipality: 'Inongo' | |
| }, | |
| { | |
| name: 'Nioki Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-MN', | |
| iata_code: 'NIO', | |
| municipality: 'Nioki' | |
| }, | |
| { | |
| name: 'Bandundu Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KL', | |
| iata_code: 'FDU', | |
| municipality: 'Bandundu' | |
| }, | |
| { | |
| name: 'Kiri Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-MN', | |
| iata_code: 'KRZ', | |
| municipality: 'Kiri' | |
| }, | |
| { | |
| name: 'Kikwit Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KL', | |
| iata_code: 'KKW', | |
| municipality: 'Kikwit' | |
| }, | |
| { | |
| name: 'Idiofa Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KL', | |
| iata_code: 'IDF', | |
| municipality: 'Idiofa' | |
| }, | |
| { | |
| name: 'Lusanga Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KL', | |
| iata_code: 'LUS', | |
| municipality: 'Lusanga' | |
| }, | |
| { | |
| name: 'Masi Manimba Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KL', | |
| iata_code: 'MSM', | |
| municipality: 'Masi Manimba' | |
| }, | |
| { | |
| name: 'Mbandaka Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-EQ', | |
| iata_code: 'MDK', | |
| municipality: 'Mbandaka' | |
| }, | |
| { | |
| name: 'Basankusu Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-EQ', | |
| iata_code: 'BSU', | |
| municipality: 'Basankusu' | |
| }, | |
| { | |
| name: 'Libenge Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-SU', | |
| iata_code: 'LIE', | |
| municipality: 'Libenge' | |
| }, | |
| { | |
| name: 'Gbadolite Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-NU', | |
| iata_code: 'BDT', | |
| municipality: 'Gbadolite' | |
| }, | |
| { | |
| name: 'Gemena Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-SU', | |
| iata_code: 'GMA', | |
| municipality: 'Gemena' | |
| }, | |
| { | |
| name: 'Kotakoli Airbase', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-NU', | |
| iata_code: 'KLI', | |
| municipality: 'Kotakoli' | |
| }, | |
| { | |
| name: 'Bumba Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-MO', | |
| iata_code: 'BMB', | |
| municipality: 'Bumba' | |
| }, | |
| { | |
| name: 'Lisala Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-MO', | |
| iata_code: 'LIQ', | |
| municipality: 'Lisala' | |
| }, | |
| { | |
| name: 'Boende Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TU', | |
| iata_code: 'BNB', | |
| municipality: 'Boende' | |
| }, | |
| { | |
| name: 'Ikela Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TU', | |
| iata_code: 'IKL', | |
| municipality: 'Ikela' | |
| }, | |
| { | |
| name: 'Bangoka International Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TO', | |
| iata_code: 'FKI', | |
| municipality: 'Kisangani' | |
| }, | |
| { | |
| name: 'Yangambi Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TO', | |
| iata_code: 'YAN', | |
| municipality: 'Yangambi' | |
| }, | |
| { | |
| name: 'Matari Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-HU', | |
| iata_code: 'IRP', | |
| municipality: 'Isiro' | |
| }, | |
| { | |
| name: 'Bunia Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-IT', | |
| iata_code: 'BUX', | |
| municipality: 'Bunia' | |
| }, | |
| { | |
| name: 'Buta Zega Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-BU', | |
| iata_code: 'BZU', | |
| municipality: 'Buta' | |
| }, | |
| { | |
| name: 'Bukavu Kavumu Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-SK', | |
| iata_code: 'BKY', | |
| municipality: 'Kamakombe' | |
| }, | |
| { | |
| name: 'Rughenda Airfield', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-NK', | |
| iata_code: 'RUE', | |
| municipality: 'Butembo' | |
| }, | |
| { | |
| name: 'Goma International Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-NK', | |
| iata_code: 'GOM', | |
| municipality: 'Goma' | |
| }, | |
| { | |
| name: 'Beni Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-NK', | |
| iata_code: 'BNC', | |
| municipality: 'Beni' | |
| }, | |
| { | |
| name: 'Kindu Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-MA', | |
| iata_code: 'KND', | |
| municipality: 'Kindu' | |
| }, | |
| { | |
| name: 'Kinkungwa Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-MA', | |
| iata_code: 'KLY', | |
| municipality: 'Kalima' | |
| }, | |
| { | |
| name: 'Punia Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-MA', | |
| iata_code: 'PUN', | |
| municipality: 'Punia' | |
| }, | |
| { | |
| name: 'Lubumbashi International Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-HK', | |
| iata_code: 'FBM', | |
| municipality: 'Lubumbashi' | |
| }, | |
| { | |
| name: 'Kasenga Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-HK', | |
| iata_code: 'KEC', | |
| municipality: 'Kasenga' | |
| }, | |
| { | |
| name: 'Kolwezi Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-LU', | |
| iata_code: 'KWZ', | |
| municipality: 'Kolwezi' | |
| }, | |
| { | |
| name: 'Manono Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TA', | |
| iata_code: 'MNO', | |
| municipality: 'Manono' | |
| }, | |
| { | |
| name: 'Moba Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TA', | |
| iata_code: 'BDV', | |
| municipality: 'Moba' | |
| }, | |
| { | |
| name: 'Kalemie Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TA', | |
| iata_code: 'FMI', | |
| municipality: 'Kalemie' | |
| }, | |
| { | |
| name: 'Kabalo Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TA', | |
| iata_code: 'KBO', | |
| municipality: 'Kabalo' | |
| }, | |
| { | |
| name: 'Kongolo Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-TA', | |
| iata_code: 'KOO', | |
| municipality: 'Kongolo' | |
| }, | |
| { | |
| name: 'Kamina City Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-HL', | |
| iata_code: 'KMN', | |
| municipality: 'Kamina' | |
| }, | |
| { | |
| name: 'Kapanga Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-LU', | |
| iata_code: 'KAP', | |
| municipality: 'Kapanga' | |
| }, | |
| { | |
| name: 'Kaniama Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-HL', | |
| iata_code: 'KNM', | |
| municipality: 'Kaniama' | |
| }, | |
| { | |
| name: 'Kananga Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KC', | |
| iata_code: 'KGA', | |
| municipality: 'Kananga' | |
| }, | |
| { | |
| name: 'Luiza Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KC', | |
| iata_code: 'LZA', | |
| municipality: 'Luiza' | |
| }, | |
| { | |
| name: 'Tshikapa Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KS', | |
| iata_code: 'TSH', | |
| municipality: 'Tshikapa' | |
| }, | |
| { | |
| name: 'Lodja Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-SA', | |
| iata_code: 'LJA', | |
| municipality: 'Lodja' | |
| }, | |
| { | |
| name: 'Lusambo Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-SA', | |
| iata_code: 'LBO', | |
| municipality: 'Lusambo' | |
| }, | |
| { | |
| name: 'Mweka Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KS', | |
| iata_code: 'MEW', | |
| municipality: 'Mweka' | |
| }, | |
| { | |
| name: 'Basongo Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KS', | |
| iata_code: 'BAN', | |
| municipality: 'Basongo' | |
| }, | |
| { | |
| name: 'Ilebo Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KS', | |
| iata_code: 'PFR', | |
| municipality: 'Ilebo' | |
| }, | |
| { | |
| name: 'Mbuji Mayi Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-KE', | |
| iata_code: 'MJM', | |
| municipality: 'Mbuji Mayi' | |
| }, | |
| { | |
| name: 'Tunta Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-LO', | |
| iata_code: 'KBN', | |
| municipality: 'Kabinda' | |
| }, | |
| { | |
| name: 'Nkan Airstrip', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-1', | |
| iata_code: 'NKA', | |
| municipality: 'Ntoum' | |
| }, | |
| { | |
| name: 'Miele Mimbale Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-6', | |
| iata_code: 'GIM', | |
| municipality: 'Miele Mimbale' | |
| }, | |
| { | |
| name: 'Akieni Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-2', | |
| iata_code: 'AKE', | |
| municipality: 'Akieni' | |
| }, | |
| { | |
| name: 'Gamba Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-8', | |
| iata_code: 'GAX', | |
| municipality: 'Gamba' | |
| }, | |
| { | |
| name: 'Gabbs Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'GAB', | |
| municipality: 'Gabbs' | |
| }, | |
| { | |
| name: 'Modibo Keita International Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-2', | |
| iata_code: 'BKO', | |
| municipality: 'Bamako' | |
| }, | |
| { | |
| name: 'Goundam Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-6', | |
| iata_code: 'GUD', | |
| municipality: 'Goundam' | |
| }, | |
| { | |
| name: 'Gao Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-7', | |
| iata_code: 'GAQ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Kenieba Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-1', | |
| iata_code: 'KNZ', | |
| municipality: 'Kenieba' | |
| }, | |
| { | |
| name: 'Koutiala Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-3', | |
| iata_code: 'KTX', | |
| municipality: 'Koutiala' | |
| }, | |
| { | |
| name: 'Kayes Dag Dag Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-1', | |
| iata_code: 'KYS', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Mopti Ambod\u00e9djo International Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-5', | |
| iata_code: 'MZI', | |
| municipality: 'S\u00e9var\u00e9' | |
| }, | |
| { | |
| name: 'Nara Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-2', | |
| iata_code: 'NRM', | |
| municipality: 'Nara' | |
| }, | |
| { | |
| name: 'Nioro du Sahel Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-1', | |
| iata_code: 'NIX', | |
| municipality: 'Nioro du Sahel' | |
| }, | |
| { | |
| name: 'Sikasso Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-3', | |
| iata_code: 'KSS', | |
| municipality: 'Sikasso' | |
| }, | |
| { | |
| name: 'Timbuktu Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-7', | |
| iata_code: 'TOM', | |
| municipality: 'Timbuktu' | |
| }, | |
| { | |
| name: 'Y\u00e9liman\u00e9 Airport', | |
| iso_country: 'ML', | |
| country_name: 'Mali', | |
| iso_region: 'ML-1', | |
| iata_code: 'EYL', | |
| municipality: 'Y\u00e9liman\u00e9' | |
| }, | |
| { | |
| name: 'Guasopa Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'GAZ', | |
| municipality: 'Woodlark (Muyua) Island' | |
| }, | |
| { | |
| name: 'Dornoch Airfield', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'DOC', | |
| municipality: 'Dornoch, Sunderland' | |
| }, | |
| { | |
| name: 'Flotta Isle Airstrip', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'FLH', | |
| municipality: 'Flotta Isle' | |
| }, | |
| { | |
| name: 'Foula Airfield', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'FOA', | |
| municipality: 'Foula' | |
| }, | |
| { | |
| name: 'Out Skerries Airfield', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'OUK', | |
| municipality: 'Grunay Island' | |
| }, | |
| { | |
| name: 'Papa Stour Airport', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'PSV', | |
| municipality: 'Papa Stour Island' | |
| }, | |
| { | |
| name: 'Glenforsa Airfield', | |
| iso_country: 'GB', | |
| country_name: 'United Kingdom', | |
| iso_region: 'GB-SCT', | |
| iata_code: 'ULL', | |
| municipality: 'Glenforsa' | |
| }, | |
| { | |
| name: 'Garbaharey Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-GE', | |
| iata_code: 'GBM', | |
| municipality: 'Garbaharey' | |
| }, | |
| { | |
| name: 'Banjul International Airport', | |
| iso_country: 'GM', | |
| country_name: 'Gambia', | |
| iso_region: 'GM-W', | |
| iata_code: 'BJL', | |
| municipality: 'Banjul' | |
| }, | |
| { | |
| name: 'Fuerteventura Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CN', | |
| iata_code: 'FUE', | |
| municipality: 'El Matorral' | |
| }, | |
| { | |
| name: 'La Gomera Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CN', | |
| iata_code: 'GMZ', | |
| municipality: 'Alajero, La Gomera Island' | |
| }, | |
| { | |
| name: 'El Hierro Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CN', | |
| iata_code: 'VDE', | |
| municipality: 'El Hierro Island' | |
| }, | |
| { | |
| name: 'La Palma Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CN', | |
| iata_code: 'SPC', | |
| municipality: 'Sta Cruz de la Palma, La Palma Island' | |
| }, | |
| { | |
| name: 'Gran Canaria Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CN', | |
| iata_code: 'LPA', | |
| municipality: 'Gran Canaria Island' | |
| }, | |
| { | |
| name: 'C\u00e9sar Manrique-Lanzarote Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CN', | |
| iata_code: 'ACE', | |
| municipality: 'San Bartolom\u00e9' | |
| }, | |
| { | |
| name: 'Tenerife Sur Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CN', | |
| iata_code: 'TFS', | |
| municipality: 'Tenerife' | |
| }, | |
| { | |
| name: 'Gravatai Airport', | |
| iso_country: 'BR', | |
| country_name: 'Brazil', | |
| iso_region: 'BR-RS', | |
| iata_code: 'GCV', | |
| municipality: 'Gravatai' | |
| }, | |
| { | |
| name: 'Tenerife Norte-Ciudad de La Laguna Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CN', | |
| iata_code: 'TFN', | |
| municipality: 'Tenerife' | |
| }, | |
| { | |
| name: 'Ceuta Heliport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CE', | |
| iata_code: 'JCU', | |
| municipality: 'Ceuta' | |
| }, | |
| { | |
| name: 'Melilla Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-ML', | |
| iata_code: 'MLN', | |
| municipality: 'Melilla' | |
| }, | |
| { | |
| name: 'Gewoia Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'GEW', | |
| municipality: 'Gewoia' | |
| }, | |
| { | |
| name: 'Camopi Airport', | |
| iso_country: 'GF', | |
| country_name: 'French Guiana', | |
| iso_region: 'GF-CY', | |
| iata_code: 'OYC', | |
| municipality: 'Camopi' | |
| }, | |
| { | |
| name: 'Bo Airport', | |
| iso_country: 'SL', | |
| country_name: 'Sierra Leone', | |
| iso_region: 'SL-S', | |
| iata_code: 'KBS', | |
| municipality: 'Bo' | |
| }, | |
| { | |
| name: 'Pope Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'GFD', | |
| municipality: 'Greenfield' | |
| }, | |
| { | |
| name: 'Gbangbatok Airport', | |
| iso_country: 'SL', | |
| country_name: 'Sierra Leone', | |
| iso_region: 'SL-S', | |
| iata_code: 'GBK', | |
| municipality: 'Gbangbatok' | |
| }, | |
| { | |
| name: 'Hastings Airport', | |
| iso_country: 'SL', | |
| country_name: 'Sierra Leone', | |
| iso_region: 'SL-W', | |
| iata_code: 'HGS', | |
| municipality: 'Freetown' | |
| }, | |
| { | |
| name: 'Kabala Airport', | |
| iso_country: 'SL', | |
| country_name: 'Sierra Leone', | |
| iso_region: 'SL-N', | |
| iata_code: 'KBA', | |
| municipality: 'Kabala' | |
| }, | |
| { | |
| name: 'Kenema Airport', | |
| iso_country: 'SL', | |
| country_name: 'Sierra Leone', | |
| iso_region: 'SL-E', | |
| iata_code: 'KEN', | |
| municipality: 'Kenema' | |
| }, | |
| { | |
| name: 'Lungi International Airport', | |
| iso_country: 'SL', | |
| country_name: 'Sierra Leone', | |
| iso_region: 'SL-N', | |
| iata_code: 'FNA', | |
| municipality: 'Freetown (Lungi-Town)' | |
| }, | |
| { | |
| name: 'Yengema Airport', | |
| iso_country: 'SL', | |
| country_name: 'Sierra Leone', | |
| iso_region: 'SL-E', | |
| iata_code: 'WYE', | |
| municipality: 'Yengema' | |
| }, | |
| { | |
| name: 'Bubaque Airport', | |
| iso_country: 'GW', | |
| country_name: 'Guinea-Bissau', | |
| iso_region: 'GW-BL', | |
| iata_code: 'BQE', | |
| municipality: 'Bubaque' | |
| }, | |
| { | |
| name: 'Osvaldo Vieira International Airport', | |
| iso_country: 'GW', | |
| country_name: 'Guinea-Bissau', | |
| iso_region: 'GW-BS', | |
| iata_code: 'OXB', | |
| municipality: 'Bissau' | |
| }, | |
| { | |
| name: 'Garachin\u00e9 Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-5', | |
| iata_code: 'GHE', | |
| municipality: 'Garachin\u00e9' | |
| }, | |
| { | |
| name: 'Akunnaaq Heliport', | |
| iso_country: 'GL', | |
| country_name: 'Greenland', | |
| iso_region: 'GL-QK', | |
| iata_code: 'QCU', | |
| municipality: 'Akunnaaq' | |
| }, | |
| { | |
| name: 'Buchanan Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-GB', | |
| iata_code: 'UCN', | |
| municipality: 'Buchanan' | |
| }, | |
| { | |
| name: 'Cape Palmas Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-MY', | |
| iata_code: 'CPA', | |
| municipality: 'Harper' | |
| }, | |
| { | |
| name: 'Greenville/Sinoe Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-SI', | |
| iata_code: 'SNI', | |
| municipality: 'Greenville' | |
| }, | |
| { | |
| name: 'Spriggs Payne Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-MO', | |
| iata_code: 'MLW', | |
| municipality: 'Monrovia' | |
| }, | |
| { | |
| name: 'Nimba Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-NI', | |
| iata_code: 'NIA', | |
| municipality: 'Nimba' | |
| }, | |
| { | |
| name: 'Gulgubip Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'GLP', | |
| municipality: 'Gulgubip' | |
| }, | |
| { | |
| name: 'Roberts International Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-MG', | |
| iata_code: 'ROB', | |
| municipality: 'Monrovia' | |
| }, | |
| { | |
| name: 'Sasstown Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-GK', | |
| iata_code: 'SAZ', | |
| municipality: 'Sasstown' | |
| }, | |
| { | |
| name: 'Tchien Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-GG', | |
| iata_code: 'THC', | |
| municipality: 'Zwedru' | |
| }, | |
| { | |
| name: 'Voinjama Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-LO', | |
| iata_code: 'VOI', | |
| municipality: 'Voinjama' | |
| }, | |
| { | |
| name: 'Al Massira Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-AGD', | |
| iata_code: 'AGA', | |
| municipality: 'Agadir (Temsia)' | |
| }, | |
| { | |
| name: 'Tan Tan Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-TNT', | |
| iata_code: 'TTA', | |
| municipality: 'Tan Tan' | |
| }, | |
| { | |
| name: 'Bouarfa Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-FIG', | |
| iata_code: 'UAR', | |
| municipality: 'Bouarfa' | |
| }, | |
| { | |
| name: 'Fes Sa\u00efss International Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-FES', | |
| iata_code: 'FEZ', | |
| municipality: 'Sa\u00efss' | |
| }, | |
| { | |
| name: 'Moulay Ali Cherif Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-ERR', | |
| iata_code: 'ERH', | |
| municipality: 'Errachidia' | |
| }, | |
| { | |
| name: 'Bassatine Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-MEK', | |
| iata_code: 'MEK', | |
| municipality: 'Meknes' | |
| }, | |
| { | |
| name: 'Oujda Angads Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-OUJ', | |
| iata_code: 'OUD', | |
| municipality: 'Ahl Angad' | |
| }, | |
| { | |
| name: 'Smara Airport', | |
| iso_country: 'EH', | |
| country_name: 'Western Sahara', | |
| iso_region: 'EH-U-A', | |
| iata_code: 'SMW', | |
| municipality: 'Smara' | |
| }, | |
| { | |
| name: 'Ben Slimane Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-CAS', | |
| iata_code: 'GMD', | |
| municipality: 'Ben Slimane' | |
| }, | |
| { | |
| name: 'Beni Mellal Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-BEM', | |
| iata_code: 'BEM', | |
| municipality: 'Oulad Yaich' | |
| }, | |
| { | |
| name: 'Rabat-Sal\u00e9 Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-RBA', | |
| iata_code: 'RBA', | |
| municipality: 'Rabat' | |
| }, | |
| { | |
| name: 'Dakhla Airport', | |
| iso_country: 'EH', | |
| country_name: 'Western Sahara', | |
| iso_region: 'EH-U-A', | |
| iata_code: 'VIL', | |
| municipality: 'Dakhla' | |
| }, | |
| { | |
| name: 'Essaouira-Mogador Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-ESI', | |
| iata_code: 'ESU', | |
| municipality: 'Essaouira' | |
| }, | |
| { | |
| name: 'Hassan I Airport', | |
| iso_country: 'EH', | |
| country_name: 'Western Sahara', | |
| iso_region: 'EH-U-A', | |
| iata_code: 'EUN', | |
| municipality: 'El Aai\u00fan' | |
| }, | |
| { | |
| name: 'Mohammed V International Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-CAS', | |
| iata_code: 'CMN', | |
| municipality: 'Casablanca' | |
| }, | |
| { | |
| name: 'Nador Al Aaroui International Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-NAD', | |
| iata_code: 'NDR', | |
| municipality: 'Al Aaroui' | |
| }, | |
| { | |
| name: 'Menara Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-MAR', | |
| iata_code: 'RAK', | |
| municipality: 'Marrakech' | |
| }, | |
| { | |
| name: 'Kenitra Air Base', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-KEN', | |
| iata_code: 'NNA', | |
| municipality: 'Kenitra' | |
| }, | |
| { | |
| name: 'Ouarzazate Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-OUA', | |
| iata_code: 'OZZ', | |
| municipality: 'Ouarzazate' | |
| }, | |
| { | |
| name: 'Golog Maq\u00ean Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-63', | |
| iata_code: 'GMQ', | |
| municipality: 'Golog (Maq\u00ean)' | |
| }, | |
| { | |
| name: 'Cherif Al Idrissi Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-HOC', | |
| iata_code: 'AHU', | |
| municipality: 'Al Hoceima' | |
| }, | |
| { | |
| name: 'Sania Ramel Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-TET', | |
| iata_code: 'TTU', | |
| municipality: 'T\u00e9touan' | |
| }, | |
| { | |
| name: 'Tangier Ibn Battuta Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-TNG', | |
| iata_code: 'TNG', | |
| municipality: 'Tangier' | |
| }, | |
| { | |
| name: 'Goodnews Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'GNU', | |
| municipality: 'Goodnews' | |
| }, | |
| { | |
| name: 'Blaise Diagne International Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-DK', | |
| iata_code: 'DSS', | |
| municipality: 'Dakar' | |
| }, | |
| { | |
| name: 'Gora Airstrip', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'GOC', | |
| municipality: 'Gora' | |
| }, | |
| { | |
| name: 'Kolda/Sare Bidji Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-KD', | |
| iata_code: 'KDA', | |
| municipality: 'Kolda' | |
| }, | |
| { | |
| name: 'Ziguinchor Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-ZG', | |
| iata_code: 'ZIG', | |
| municipality: 'Ziguinchor' | |
| }, | |
| { | |
| name: 'Cap Skirring Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-ZG', | |
| iata_code: 'CSK', | |
| municipality: 'Cap Skirring' | |
| }, | |
| { | |
| name: 'Kaolack Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-FK', | |
| iata_code: 'KLC', | |
| municipality: 'Kaolack' | |
| }, | |
| { | |
| name: 'L\u00e9opold S\u00e9dar Senghor International Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-DK', | |
| iata_code: 'DKR', | |
| municipality: 'Dakar' | |
| }, | |
| { | |
| name: 'Ouro Sogui Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-MT', | |
| iata_code: 'MAX', | |
| municipality: 'Ouro Sogui' | |
| }, | |
| { | |
| name: 'Podor Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-SL', | |
| iata_code: 'POD', | |
| municipality: 'Podor' | |
| }, | |
| { | |
| name: 'Richard Toll Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-SL', | |
| iata_code: 'RDT', | |
| municipality: 'Richard Toll' | |
| }, | |
| { | |
| name: 'Saint Louis Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-SL', | |
| iata_code: 'XLS', | |
| municipality: 'Saint Louis' | |
| }, | |
| { | |
| name: 'Bakel Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-TC', | |
| iata_code: 'BXE', | |
| municipality: 'Bakel' | |
| }, | |
| { | |
| name: 'K\u00e9dougou Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-TC', | |
| iata_code: 'KGG', | |
| municipality: 'K\u00e9dougou' | |
| }, | |
| { | |
| name: 'Simenti Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-TC', | |
| iata_code: 'SMY', | |
| municipality: 'Simenti' | |
| }, | |
| { | |
| name: 'Tambacounda Airport', | |
| iso_country: 'SN', | |
| country_name: 'Senegal', | |
| iso_region: 'SN-TC', | |
| iata_code: 'TUD', | |
| municipality: 'Tambacounda' | |
| }, | |
| { | |
| name: 'Aioun el Atrouss Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-02', | |
| iata_code: 'AEO', | |
| municipality: 'Aioun El Atrouss' | |
| }, | |
| { | |
| name: 'Boutilimit Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-06', | |
| iata_code: 'OTL', | |
| municipality: 'Boutilimit' | |
| }, | |
| { | |
| name: 'Tichitt Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-09', | |
| iata_code: 'THI', | |
| municipality: 'Tichitt' | |
| }, | |
| { | |
| name: 'Tidjikja Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-09', | |
| iata_code: 'TIY', | |
| municipality: 'Tidjikja' | |
| }, | |
| { | |
| name: 'Abbaye Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-05', | |
| iata_code: 'BGH', | |
| municipality: 'Boghe' | |
| }, | |
| { | |
| name: 'Kiffa Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-03', | |
| iata_code: 'KFA', | |
| municipality: 'Kiffa' | |
| }, | |
| { | |
| name: 'Timbedra Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-01', | |
| iata_code: 'TMD', | |
| municipality: 'Timbedra' | |
| }, | |
| { | |
| name: 'N\u00e9ma Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-01', | |
| iata_code: 'EMN', | |
| municipality: 'N\u00e9ma' | |
| }, | |
| { | |
| name: 'Akjoujt Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-12', | |
| iata_code: 'AJJ', | |
| municipality: 'Akjoujt' | |
| }, | |
| { | |
| name: 'Ka\u00e9di Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-04', | |
| iata_code: 'KED', | |
| municipality: 'Ka\u00e9di' | |
| }, | |
| { | |
| name: 'Letfotar Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-05', | |
| iata_code: 'MOM', | |
| municipality: 'Moudjeria' | |
| }, | |
| { | |
| name: 'Nouakchott\u2013Oumtounsy International Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-NKC', | |
| iata_code: 'NKC', | |
| municipality: 'Nouakchott' | |
| }, | |
| { | |
| name: 'S\u00e9libaby Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-10', | |
| iata_code: 'SEY', | |
| municipality: 'S\u00e9libaby' | |
| }, | |
| { | |
| name: 'Tamchakett Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-02', | |
| iata_code: 'THT', | |
| municipality: 'Tamchakett' | |
| }, | |
| { | |
| name: 'Atar International Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-07', | |
| iata_code: 'ATR', | |
| municipality: 'Atar' | |
| }, | |
| { | |
| name: 'Fderik Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-11', | |
| iata_code: 'FGD', | |
| municipality: 'Fderik' | |
| }, | |
| { | |
| name: 'Nouadhibou International Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-08', | |
| iata_code: 'NDB', | |
| municipality: 'Nouadhibou' | |
| }, | |
| { | |
| name: 'Tazadit Airport', | |
| iso_country: 'MR', | |
| country_name: 'Mauritania', | |
| iso_region: 'MR-11', | |
| iata_code: 'OUZ', | |
| municipality: 'Zou\u00e9rate' | |
| }, | |
| { | |
| name: 'Grand Cess Airport', | |
| iso_country: 'LR', | |
| country_name: 'Liberia', | |
| iso_region: 'LR-GK', | |
| iata_code: 'GRC', | |
| municipality: 'Grand Cess' | |
| }, | |
| { | |
| name: 'Granite Mountain Air Station', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'GMT', | |
| municipality: 'Granite Mountain' | |
| }, | |
| { | |
| name: 'Chiquimula Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-CQ', | |
| iata_code: 'CIQ', | |
| municipality: 'Chiquimula' | |
| }, | |
| { | |
| name: 'Dos Lagunas Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-PE', | |
| iata_code: 'DON', | |
| municipality: 'Dos Lagunas' | |
| }, | |
| { | |
| name: 'El Naranjo Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-ES', | |
| iata_code: 'ENJ', | |
| municipality: 'El Naranjo' | |
| }, | |
| { | |
| name: 'Paso Caballos Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-PE', | |
| iata_code: 'PCG', | |
| municipality: 'Paso Caballos' | |
| }, | |
| { | |
| name: 'Uaxactun Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-PE', | |
| iata_code: 'UAX', | |
| municipality: 'Uaxactun' | |
| }, | |
| { | |
| name: 'Playa Grande Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-QC', | |
| iata_code: 'PKJ', | |
| municipality: 'Playa Grande' | |
| }, | |
| { | |
| name: 'Kirawira B Aerodrome', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-13', | |
| iata_code: 'GTZ', | |
| municipality: 'Grumeti Game Reserve' | |
| }, | |
| { | |
| name: 'Conakry International Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-C', | |
| iata_code: 'CKY', | |
| municipality: 'Conakry' | |
| }, | |
| { | |
| name: 'Guriaso (Keraso) Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'GUE', | |
| municipality: 'Guriaso' | |
| }, | |
| { | |
| name: 'Fria Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-B', | |
| iata_code: 'FIG', | |
| municipality: 'Fria' | |
| }, | |
| { | |
| name: 'Faranah Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-F', | |
| iata_code: 'FAA', | |
| municipality: 'Faranah' | |
| }, | |
| { | |
| name: 'Kissidougou Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-F', | |
| iata_code: 'KSI', | |
| municipality: 'Kissidougou' | |
| }, | |
| { | |
| name: 'Tata Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-L', | |
| iata_code: 'LEK', | |
| municipality: 'Lab\u00e9' | |
| }, | |
| { | |
| name: 'Macenta Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-N', | |
| iata_code: 'MCA', | |
| municipality: 'Macenta' | |
| }, | |
| { | |
| name: 'Nz\u00e9r\u00e9kor\u00e9 Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-N', | |
| iata_code: 'NZE', | |
| municipality: 'Nz\u00e9r\u00e9kor\u00e9' | |
| }, | |
| { | |
| name: 'Bok\u00e9 Baralande Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-B', | |
| iata_code: 'BKJ', | |
| municipality: 'Bok\u00e9' | |
| }, | |
| { | |
| name: 'Sambailo Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-B', | |
| iata_code: 'SBI', | |
| municipality: 'Koundara' | |
| }, | |
| { | |
| name: 'Siguiri Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-K', | |
| iata_code: 'GII', | |
| municipality: 'Siguiri' | |
| }, | |
| { | |
| name: 'Kankan Airport', | |
| iso_country: 'GN', | |
| country_name: 'Guinea', | |
| iso_region: 'GN-K', | |
| iata_code: 'KNN', | |
| municipality: 'Kankan' | |
| }, | |
| { | |
| name: 'Am\u00edlcar Cabral International Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-B', | |
| iata_code: 'SID', | |
| municipality: 'Espargos' | |
| }, | |
| { | |
| name: 'Agostinho Neto Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-B', | |
| iata_code: 'NTO', | |
| municipality: 'Ponta do Sol' | |
| }, | |
| { | |
| name: 'Rabil Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-B', | |
| iata_code: 'BVC', | |
| municipality: 'Rabil' | |
| }, | |
| { | |
| name: 'Gordonsville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'GVE', | |
| municipality: 'Gordonsville' | |
| }, | |
| { | |
| name: 'Maio Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-S', | |
| iata_code: 'MMO', | |
| municipality: 'Vila do Maio' | |
| }, | |
| { | |
| name: 'Mosteiros Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-S', | |
| iata_code: 'MTI', | |
| municipality: 'Vila do Mosteiros' | |
| }, | |
| { | |
| name: 'Nelson Mandela International Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-S', | |
| iata_code: 'RAI', | |
| municipality: 'Praia' | |
| }, | |
| { | |
| name: 'S\u00e3o Filipe Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-S', | |
| iata_code: 'SFL', | |
| municipality: 'S\u00e3o Filipe' | |
| }, | |
| { | |
| name: 'Pregui\u00e7a Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-B', | |
| iata_code: 'SNE', | |
| municipality: 'Pregui\u00e7a' | |
| }, | |
| { | |
| name: 'S\u00e3o Pedro Airport', | |
| iso_country: 'CV', | |
| country_name: 'Cabo Verde', | |
| iso_region: 'CV-B', | |
| iata_code: 'VXE', | |
| municipality: 'S\u00e3o Pedro' | |
| }, | |
| { | |
| name: 'Bemichi Airport', | |
| iso_country: 'GY', | |
| country_name: 'Guyana', | |
| iso_region: 'GY-BA', | |
| iata_code: 'BCG', | |
| municipality: 'Kumaka' | |
| }, | |
| { | |
| name: 'Botopasi Airport', | |
| iso_country: 'SR', | |
| country_name: 'Suriname', | |
| iso_region: 'SR-SI', | |
| iata_code: 'BTO', | |
| municipality: 'Botopasi' | |
| }, | |
| { | |
| name: 'Djumu-Djomoe Airport', | |
| iso_country: 'SR', | |
| country_name: 'Suriname', | |
| iso_region: 'SR-SI', | |
| iata_code: 'DOE', | |
| municipality: 'Djumu-Djomoe' | |
| }, | |
| { | |
| name: 'Ladouanie Airport', | |
| iso_country: 'SR', | |
| country_name: 'Suriname', | |
| iso_region: 'SR-SI', | |
| iata_code: 'LDO', | |
| municipality: 'Aurora' | |
| }, | |
| { | |
| name: 'Washabo Airport', | |
| iso_country: 'SR', | |
| country_name: 'Suriname', | |
| iso_region: 'SR-SI', | |
| iata_code: 'WSO', | |
| municipality: 'Washabo' | |
| }, | |
| { | |
| name: 'Ghazni Airport', | |
| iso_country: 'AF', | |
| country_name: 'Afghanistan', | |
| iso_region: 'AF-GHA', | |
| iata_code: 'GZI', | |
| municipality: 'Ghazni' | |
| }, | |
| { | |
| name: 'Addis Ababa Bole International Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AA', | |
| iata_code: 'ADD', | |
| municipality: 'Addis Ababa' | |
| }, | |
| { | |
| name: 'Arba Minch Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SN', | |
| iata_code: 'AMH', | |
| municipality: 'Arba Minch' | |
| }, | |
| { | |
| name: 'Axum Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-TI', | |
| iata_code: 'AXU', | |
| municipality: 'Axum' | |
| }, | |
| { | |
| name: 'Baco Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SN', | |
| iata_code: 'BCO', | |
| municipality: 'Baco' | |
| }, | |
| { | |
| name: 'Bahir Dar Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AM', | |
| iata_code: 'BJR', | |
| municipality: 'Bahir Dar' | |
| }, | |
| { | |
| name: 'Beica Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'BEI', | |
| municipality: 'Beica' | |
| }, | |
| { | |
| name: 'Dembidollo Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'DEM', | |
| municipality: 'Dembidollo' | |
| }, | |
| { | |
| name: 'Debre Markos Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AM', | |
| iata_code: 'DBM', | |
| municipality: 'Debre Markos' | |
| }, | |
| { | |
| name: 'Aba Tenna Dejazmach Yilma International Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-DD', | |
| iata_code: 'DIR', | |
| municipality: 'Dire Dawa' | |
| }, | |
| { | |
| name: 'Debre Tabor Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AM', | |
| iata_code: 'DBT', | |
| municipality: 'Debre Tabor' | |
| }, | |
| { | |
| name: 'Fincha Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'FNH', | |
| municipality: 'Fincha' | |
| }, | |
| { | |
| name: 'Robe Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'GOB', | |
| municipality: 'Goba' | |
| }, | |
| { | |
| name: 'Ghinnir Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'GNN', | |
| municipality: 'Ghinnir' | |
| }, | |
| { | |
| name: 'Gambela Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-GA', | |
| iata_code: 'GMB', | |
| municipality: 'Gambela' | |
| }, | |
| { | |
| name: 'Gondar Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AM', | |
| iata_code: 'GDQ', | |
| municipality: 'Azezo' | |
| }, | |
| { | |
| name: 'Gode Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SO', | |
| iata_code: 'GDE', | |
| municipality: 'Gode' | |
| }, | |
| { | |
| name: 'Gore Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'GOR', | |
| municipality: 'Gore' | |
| }, | |
| { | |
| name: 'Harar Meda Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'QHR', | |
| municipality: 'Debre Zeyit' | |
| }, | |
| { | |
| name: 'Humera Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-TI', | |
| iata_code: 'HUE', | |
| municipality: 'Akwi' | |
| }, | |
| { | |
| name: 'Wilwal International Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SO', | |
| iata_code: 'JIJ', | |
| municipality: 'Jijiga' | |
| }, | |
| { | |
| name: 'Jimma Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'JIM', | |
| municipality: 'Jimma' | |
| }, | |
| { | |
| name: 'Kebri Dahar Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SO', | |
| iata_code: 'ABK', | |
| municipality: 'Kebri Dahar' | |
| }, | |
| { | |
| name: 'Kelafo East Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SO', | |
| iata_code: 'LFO', | |
| municipality: 'Kelafo' | |
| }, | |
| { | |
| name: 'Hawassa International Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-XSD', | |
| iata_code: 'AWA', | |
| municipality: 'Hawassa' | |
| }, | |
| { | |
| name: 'Lalibella Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AM', | |
| iata_code: 'LLI', | |
| municipality: 'Lalibela' | |
| }, | |
| { | |
| name: 'Mekane Selam Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AM', | |
| iata_code: 'MKS', | |
| municipality: 'Mekane Selam' | |
| }, | |
| { | |
| name: 'Alula Aba Nega Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-TI', | |
| iata_code: 'MQX', | |
| municipality: 'Mekelle' | |
| }, | |
| { | |
| name: 'Metema Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AM', | |
| iata_code: 'ETE', | |
| municipality: 'Metema' | |
| }, | |
| { | |
| name: 'Mendi Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'NDM', | |
| municipality: 'Mendi' | |
| }, | |
| { | |
| name: 'Mui River Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SW', | |
| iata_code: 'MUJ', | |
| municipality: 'Omo National Park' | |
| }, | |
| { | |
| name: 'Mizan Teferi Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SW', | |
| iata_code: 'MTF', | |
| municipality: 'Mizan Teferi' | |
| }, | |
| { | |
| name: 'Negele Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'EGL', | |
| municipality: 'Negele Borana' | |
| }, | |
| { | |
| name: 'Nejjo Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'NEJ', | |
| municipality: 'Nejo' | |
| }, | |
| { | |
| name: 'Nekemte Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'NEK', | |
| municipality: 'Nekemte' | |
| }, | |
| { | |
| name: 'Beles Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-BE', | |
| iata_code: 'PWI', | |
| municipality: 'Pawe' | |
| }, | |
| { | |
| name: 'Soddu Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'SXU', | |
| municipality: 'Soddu' | |
| }, | |
| { | |
| name: 'Shakiso Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-OR', | |
| iata_code: 'SKR', | |
| municipality: 'Shakiso' | |
| }, | |
| { | |
| name: 'Semera Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-AF', | |
| iata_code: 'SZE', | |
| municipality: 'Semera' | |
| }, | |
| { | |
| name: 'Asosa Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-BE', | |
| iata_code: 'ASO', | |
| municipality: 'Asosa' | |
| }, | |
| { | |
| name: 'Tippi Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SW', | |
| iata_code: 'TIE', | |
| municipality: 'Tippi' | |
| }, | |
| { | |
| name: 'Warder Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SO', | |
| iata_code: 'WRA', | |
| municipality: 'Warder' | |
| }, | |
| { | |
| name: 'Hatzfeldhaven Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'HAZ', | |
| municipality: 'Hatzfeldhaven' | |
| }, | |
| { | |
| name: 'Bujumbura Melchior Ndadaye International Airport', | |
| iso_country: 'BI', | |
| country_name: 'Burundi', | |
| iso_region: 'BI-BM', | |
| iata_code: 'BJM', | |
| municipality: 'Bujumbura' | |
| }, | |
| { | |
| name: 'Gitega Airport', | |
| iso_country: 'BI', | |
| country_name: 'Burundi', | |
| iso_region: 'BI-GI', | |
| iata_code: 'GID', | |
| municipality: 'Gitega' | |
| }, | |
| { | |
| name: 'Kirundo Airport', | |
| iso_country: 'BI', | |
| country_name: 'Burundi', | |
| iso_region: 'BI-KI', | |
| iata_code: 'KRE', | |
| municipality: 'Kirundo' | |
| }, | |
| { | |
| name: 'Haibei Qilian Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-63', | |
| iata_code: 'HBQ', | |
| municipality: 'Haibei (Qilian)' | |
| }, | |
| { | |
| name: 'Hambantota Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-3', | |
| iata_code: 'HBT', | |
| municipality: 'Hambantota' | |
| }, | |
| { | |
| name: 'Caluula Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-BR', | |
| iata_code: 'ALU', | |
| municipality: 'Caluula' | |
| }, | |
| { | |
| name: 'Baidoa Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-BY', | |
| iata_code: 'BIB', | |
| municipality: 'Baidoa' | |
| }, | |
| { | |
| name: 'Qandala Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-BR', | |
| iata_code: 'CXN', | |
| municipality: 'Qandala' | |
| }, | |
| { | |
| name: 'Baardheere Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-GE', | |
| iata_code: 'BSY', | |
| municipality: 'Baardheere' | |
| }, | |
| { | |
| name: 'Eil Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-NU', | |
| iata_code: 'HCM', | |
| municipality: 'Eyl' | |
| }, | |
| { | |
| name: 'Bosaso / Bender Qassim International Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-BR', | |
| iata_code: 'BSA', | |
| municipality: 'Bosaso' | |
| }, | |
| { | |
| name: 'Gardo Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-BR', | |
| iata_code: 'GSR', | |
| municipality: 'Gardo' | |
| }, | |
| { | |
| name: 'Egal International Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-WO', | |
| iata_code: 'HGA', | |
| municipality: 'Hargeisa' | |
| }, | |
| { | |
| name: 'Berbera Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-WO', | |
| iata_code: 'BBO', | |
| municipality: 'Berbera' | |
| }, | |
| { | |
| name: 'Lugh Ganane Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-GE', | |
| iata_code: 'LGX', | |
| municipality: 'Luuq' | |
| }, | |
| { | |
| name: 'Kismayo Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-JH', | |
| iata_code: 'KMU', | |
| municipality: 'Kismayo' | |
| }, | |
| { | |
| name: 'Aden Adde International Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-BN', | |
| iata_code: 'MGQ', | |
| municipality: 'Mogadishu' | |
| }, | |
| { | |
| name: 'Beledweyne Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-HI', | |
| iata_code: 'BLW', | |
| municipality: 'Beledweyne' | |
| }, | |
| { | |
| name: 'Hobyo Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-GA', | |
| iata_code: 'CMO', | |
| municipality: 'Hobyo' | |
| }, | |
| { | |
| name: 'Galcaio Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-MU', | |
| iata_code: 'GLK', | |
| municipality: 'Galcaio' | |
| }, | |
| { | |
| name: 'Iskushuban Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-BR', | |
| iata_code: 'CMS', | |
| municipality: 'Iskushuban' | |
| }, | |
| { | |
| name: 'Erigavo Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-SA', | |
| iata_code: 'ERA', | |
| municipality: 'Erigavo' | |
| }, | |
| { | |
| name: 'Burao Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-TO', | |
| iata_code: 'BUO', | |
| municipality: 'Burao' | |
| }, | |
| { | |
| name: 'Garowe Airport', | |
| iso_country: 'SO', | |
| country_name: 'Somalia', | |
| iso_region: 'SO-NU', | |
| iata_code: 'GGR', | |
| municipality: 'Garowe' | |
| }, | |
| { | |
| name: 'Djibouti-Ambouli Airport', | |
| iso_country: 'DJ', | |
| country_name: 'Djibouti', | |
| iso_region: 'DJ-DJ', | |
| iata_code: 'JIB', | |
| municipality: 'Djibouti City' | |
| }, | |
| { | |
| name: 'Ali-Sabieh Airport', | |
| iso_country: 'DJ', | |
| country_name: 'Djibouti', | |
| iso_region: 'DJ-AS', | |
| iata_code: 'AII', | |
| municipality: 'Ali-Sabieh' | |
| }, | |
| { | |
| name: 'Moucha Airport', | |
| iso_country: 'DJ', | |
| country_name: 'Djibouti', | |
| iso_region: 'DJ-DJ', | |
| iata_code: 'MHI', | |
| municipality: 'Moucha Island' | |
| }, | |
| { | |
| name: 'Obock Airport', | |
| iso_country: 'DJ', | |
| country_name: 'Djibouti', | |
| iso_region: 'DJ-OB', | |
| iata_code: 'OBC', | |
| municipality: 'Obock' | |
| }, | |
| { | |
| name: 'Tadjoura Airport', | |
| iso_country: 'DJ', | |
| country_name: 'Djibouti', | |
| iso_region: 'DJ-TA', | |
| iata_code: 'TDJ', | |
| municipality: 'Tadjoura' | |
| }, | |
| { | |
| name: 'El Minya Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-MN', | |
| iata_code: 'EMY', | |
| municipality: 'El Minya' | |
| }, | |
| { | |
| name: 'Bardawil International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-SIN', | |
| iata_code: 'RDL', | |
| municipality: 'El Hassana' | |
| }, | |
| { | |
| name: 'Sidi EL Barrani Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-MT', | |
| iata_code: 'SQK', | |
| municipality: 'Sidi El Barrani' | |
| }, | |
| { | |
| name: 'El Alamein International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-MT', | |
| iata_code: 'DBB', | |
| municipality: 'El Alamein' | |
| }, | |
| { | |
| name: 'El Arish International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-SIN', | |
| iata_code: 'AAC', | |
| municipality: 'El Arish' | |
| }, | |
| { | |
| name: 'Asyut International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-AST', | |
| iata_code: 'ATZ', | |
| municipality: 'Asyut' | |
| }, | |
| { | |
| name: 'Borj El Arab International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-ALX', | |
| iata_code: 'HBE', | |
| municipality: 'Alexandria' | |
| }, | |
| { | |
| name: 'Abu Simbel Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-ASN', | |
| iata_code: 'ABS', | |
| municipality: 'Abu Simbel' | |
| }, | |
| { | |
| name: 'Cairo International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-C', | |
| iata_code: 'CAI', | |
| municipality: 'Cairo' | |
| }, | |
| { | |
| name: 'Capital International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-C', | |
| iata_code: 'CCE', | |
| municipality: 'New Cairo' | |
| }, | |
| { | |
| name: 'Ad Dakhla Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-WAD', | |
| iata_code: 'DAK', | |
| municipality: 'Dakhla Oases' | |
| }, | |
| { | |
| name: 'Hurghada International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-BA', | |
| iata_code: 'HRG', | |
| municipality: 'Hurghada' | |
| }, | |
| { | |
| name: 'El Jora Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-SIN', | |
| iata_code: 'EGH', | |
| municipality: 'El Jora' | |
| }, | |
| { | |
| name: 'El Kharja Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-WAD', | |
| iata_code: 'UVL', | |
| municipality: 'Kharja Oases' | |
| }, | |
| { | |
| name: 'Luxor International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-LX', | |
| iata_code: 'LXR', | |
| municipality: 'Luxor' | |
| }, | |
| { | |
| name: 'Marsa Alam International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-BA', | |
| iata_code: 'RMF', | |
| municipality: 'Marsa Alam' | |
| }, | |
| { | |
| name: 'Marsa Matruh International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-MT', | |
| iata_code: 'MUH', | |
| municipality: 'Marsa Matruh' | |
| }, | |
| { | |
| name: 'Haelogo Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'HEO', | |
| municipality: 'Haelogo' | |
| }, | |
| { | |
| name: 'El Owainat East International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-WAD', | |
| iata_code: 'GSQ', | |
| municipality: 'Sharq El Owainat' | |
| }, | |
| { | |
| name: 'Port Said International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-PTS', | |
| iata_code: 'PSD', | |
| municipality: 'Port Said' | |
| }, | |
| { | |
| name: 'Saint Catherine International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-JS', | |
| iata_code: 'SKV', | |
| municipality: 'Saint Catherine' | |
| }, | |
| { | |
| name: 'Suhaj Mubarak International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-SHG', | |
| iata_code: 'HMB', | |
| municipality: 'Suhaj' | |
| }, | |
| { | |
| name: 'Sharm El Sheikh International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-JS', | |
| iata_code: 'SSH', | |
| municipality: 'Sharm El Sheikh' | |
| }, | |
| { | |
| name: 'Aswan International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-ASN', | |
| iata_code: 'ASW', | |
| municipality: 'Aswan' | |
| }, | |
| { | |
| name: 'Siwa Oasis North Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-MT', | |
| iata_code: 'SEW', | |
| municipality: 'Siwa Oasis' | |
| }, | |
| { | |
| name: 'Sphinx International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-GZ', | |
| iata_code: 'SPX', | |
| municipality: 'Al Jiza' | |
| }, | |
| { | |
| name: 'Taba International Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-JS', | |
| iata_code: 'TCP', | |
| municipality: 'Taba' | |
| }, | |
| { | |
| name: 'At Tur Airport', | |
| iso_country: 'EG', | |
| country_name: 'Egypt', | |
| iso_region: 'EG-JS', | |
| iata_code: 'ELT', | |
| municipality: 'At Tur' | |
| }, | |
| { | |
| name: 'Hanchey Army (Fort Rucker) Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'HEY', | |
| municipality: 'Fort Rucker Ozark' | |
| }, | |
| { | |
| name: 'Tusi (Hunter Liggett) Army Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'HGT', | |
| municipality: 'Jolon' | |
| }, | |
| { | |
| name: 'Asmara International Airport', | |
| iso_country: 'ER', | |
| country_name: 'Eritrea', | |
| iso_region: 'ER-SK', | |
| iata_code: 'ASM', | |
| municipality: 'Asmara' | |
| }, | |
| { | |
| name: 'Massawa International Airport', | |
| iso_country: 'ER', | |
| country_name: 'Eritrea', | |
| iso_region: 'ER-SK', | |
| iata_code: 'MSW', | |
| municipality: 'Massawa' | |
| }, | |
| { | |
| name: 'Assab International Airport', | |
| iso_country: 'ER', | |
| country_name: 'Eritrea', | |
| iso_region: 'ER-DK', | |
| iata_code: 'ASA', | |
| municipality: 'Asab' | |
| }, | |
| { | |
| name: 'Tessenei Airport', | |
| iso_country: 'ER', | |
| country_name: 'Eritrea', | |
| iso_region: 'ER-GB', | |
| iata_code: 'TES', | |
| municipality: 'Tessenei' | |
| }, | |
| { | |
| name: 'Princeville Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-HI', | |
| iata_code: 'HPV', | |
| municipality: 'Hanalei' | |
| }, | |
| { | |
| name: 'Waikoloa Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-HI', | |
| iata_code: 'WKL', | |
| municipality: 'Waikoloa Village' | |
| }, | |
| { | |
| name: "Huai'an Lianshui International Airport", | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-32', | |
| iata_code: 'HIA', | |
| municipality: "Huai'an" | |
| }, | |
| { | |
| name: 'Shilavo Airport', | |
| iso_country: 'ET', | |
| country_name: 'Ethiopia', | |
| iso_region: 'ET-SO', | |
| iata_code: 'HIL', | |
| municipality: 'Shilavo' | |
| }, | |
| { | |
| name: 'Juba International Airport', | |
| iso_country: 'SS', | |
| country_name: 'South Sudan', | |
| iso_region: 'SS-17', | |
| iata_code: 'JUB', | |
| municipality: 'Juba' | |
| }, | |
| { | |
| name: 'Amboseli Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'ASV', | |
| municipality: 'Amboseli National Park' | |
| }, | |
| { | |
| name: 'Healy Lake Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'HKB', | |
| municipality: 'Healy Lake' | |
| }, | |
| { | |
| name: 'Eldoret International Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'EDL', | |
| municipality: 'Eldoret' | |
| }, | |
| { | |
| name: 'Eliye Springs Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'EYS', | |
| municipality: 'Eliye Springs' | |
| }, | |
| { | |
| name: 'Kalokol Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'KLK', | |
| municipality: 'Kalokol' | |
| }, | |
| { | |
| name: 'Garissa Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-500', | |
| iata_code: 'GAS', | |
| municipality: 'Garissa' | |
| }, | |
| { | |
| name: 'Hola Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'HOA', | |
| municipality: 'Hola' | |
| }, | |
| { | |
| name: 'Jomo Kenyatta International Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-110', | |
| iata_code: 'NBO', | |
| municipality: 'Nairobi' | |
| }, | |
| { | |
| name: 'Keekorok Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'KEU', | |
| municipality: 'Keekorok' | |
| }, | |
| { | |
| name: 'Kakamega Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-900', | |
| iata_code: 'GGM', | |
| municipality: 'Kakamega' | |
| }, | |
| { | |
| name: 'Kisumu Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-600', | |
| iata_code: 'KIS', | |
| municipality: 'Kisumu' | |
| }, | |
| { | |
| name: 'Kilaguni Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'ILU', | |
| municipality: 'Kilaguni' | |
| }, | |
| { | |
| name: 'Kericho Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'KEY', | |
| municipality: 'Kericho' | |
| }, | |
| { | |
| name: 'Kitale Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'KTL', | |
| municipality: 'Kitale' | |
| }, | |
| { | |
| name: 'Lokichoggio Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'LKG', | |
| municipality: 'Lokichoggio' | |
| }, | |
| { | |
| name: 'Lodwar Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'LOK', | |
| municipality: 'Lodwar' | |
| }, | |
| { | |
| name: 'Manda Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'LAU', | |
| municipality: 'Lamu' | |
| }, | |
| { | |
| name: 'Loyengalani Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-400', | |
| iata_code: 'LOY', | |
| municipality: 'Loyengalani' | |
| }, | |
| { | |
| name: 'Mandera Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-500', | |
| iata_code: 'NDE', | |
| municipality: 'Mandera' | |
| }, | |
| { | |
| name: 'Marsabit Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-400', | |
| iata_code: 'RBT', | |
| municipality: 'Marsabit' | |
| }, | |
| { | |
| name: 'Mulika Lodge Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-400', | |
| iata_code: 'JJM', | |
| municipality: 'Meru-Kinna' | |
| }, | |
| { | |
| name: 'Malindi Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'MYD', | |
| municipality: 'Malindi' | |
| }, | |
| { | |
| name: 'Moi International Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'MBA', | |
| municipality: 'Mombasa' | |
| }, | |
| { | |
| name: 'Mara Serena Lodge Airstrip', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'MRE', | |
| municipality: 'Masai Mara' | |
| }, | |
| { | |
| name: 'Moyale Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-400', | |
| iata_code: 'OYL', | |
| municipality: 'Moyale (Lower)' | |
| }, | |
| { | |
| name: 'Nyeri Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-200', | |
| iata_code: 'NYE', | |
| municipality: 'Nyeri' | |
| }, | |
| { | |
| name: 'Nakuru Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'NUU', | |
| municipality: 'Nakuru' | |
| }, | |
| { | |
| name: 'Nairobi Wilson Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-110', | |
| iata_code: 'WIL', | |
| municipality: 'Nairobi' | |
| }, | |
| { | |
| name: 'Nanyuki Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-200', | |
| iata_code: 'NYK', | |
| municipality: 'Nanyuki' | |
| }, | |
| { | |
| name: 'Samburu Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'UAS', | |
| municipality: 'Samburu' | |
| }, | |
| { | |
| name: 'Ukunda Airstrip', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'UKA', | |
| municipality: 'Ukunda' | |
| }, | |
| { | |
| name: 'Wajir Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-500', | |
| iata_code: 'WJR', | |
| municipality: 'Wajir' | |
| }, | |
| { | |
| name: 'Sirt International Airport / Ghardabiya Airbase', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-SR', | |
| iata_code: 'SRX', | |
| municipality: 'Sirt' | |
| }, | |
| { | |
| name: 'Ghat Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-GT', | |
| iata_code: 'GHT', | |
| municipality: 'Ghat' | |
| }, | |
| { | |
| name: 'Kufra Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-KF', | |
| iata_code: 'AKF', | |
| municipality: 'Kufra' | |
| }, | |
| { | |
| name: 'Benina International Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-BA', | |
| iata_code: 'BEN', | |
| municipality: 'Benina' | |
| }, | |
| { | |
| name: 'Mitiga International Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-TB', | |
| iata_code: 'MJI', | |
| municipality: 'Tripoli' | |
| }, | |
| { | |
| name: 'Al Abraq International Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-JA', | |
| iata_code: 'LAQ', | |
| municipality: 'Al Albraq' | |
| }, | |
| { | |
| name: 'Sabha Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-SB', | |
| iata_code: 'SEB', | |
| municipality: 'Sabha' | |
| }, | |
| { | |
| name: 'Marsa al Brega Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-WA', | |
| iata_code: 'LMQ', | |
| municipality: 'Marsa al Brega' | |
| }, | |
| { | |
| name: 'Nafurah 1 Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-WA', | |
| iata_code: 'NFR', | |
| municipality: 'Nafurah 1' | |
| }, | |
| { | |
| name: 'Hon Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-JU', | |
| iata_code: 'HUQ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Ghadames East Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-NL', | |
| iata_code: 'LTD', | |
| municipality: 'Ghadames' | |
| }, | |
| { | |
| name: 'Tobruk International Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-BU', | |
| iata_code: 'TOB', | |
| municipality: 'Adam' | |
| }, | |
| { | |
| name: 'Alzintan Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-JG', | |
| iata_code: 'ZIS', | |
| municipality: 'Zintan' | |
| }, | |
| { | |
| name: 'Zuwarah International Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-NQ', | |
| iata_code: 'WAX', | |
| municipality: 'Zuwarah' | |
| }, | |
| { | |
| name: 'Erandique Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-LE', | |
| iata_code: 'EDQ', | |
| municipality: 'Erandique' | |
| }, | |
| { | |
| name: 'Nhon Co Airfield', | |
| iso_country: 'VN', | |
| country_name: 'Viet Nam', | |
| iso_region: 'VN-CH', | |
| iata_code: 'HOO', | |
| municipality: "\u0110\u0103k R'L\u1ea5p" | |
| }, | |
| { | |
| name: 'Sary Su Airport', | |
| iso_country: 'KZ', | |
| country_name: 'Kazakhstan', | |
| iso_region: 'KZ-ULY', | |
| iata_code: 'HRC', | |
| municipality: 'Zhayrem' | |
| }, | |
| { | |
| name: 'Gisenyi Airport', | |
| iso_country: 'RW', | |
| country_name: 'Rwanda', | |
| iso_region: 'RW-04', | |
| iata_code: 'GYI', | |
| municipality: 'Gisenyi' | |
| }, | |
| { | |
| name: 'Butare Airport', | |
| iso_country: 'RW', | |
| country_name: 'Rwanda', | |
| iso_region: 'RW-05', | |
| iata_code: 'BTQ', | |
| municipality: 'Butare' | |
| }, | |
| { | |
| name: 'Kigali International Airport', | |
| iso_country: 'RW', | |
| country_name: 'Rwanda', | |
| iso_region: 'RW-01', | |
| iata_code: 'KGL', | |
| municipality: 'Kigali' | |
| }, | |
| { | |
| name: 'Ruhengeri Airport', | |
| iso_country: 'RW', | |
| country_name: 'Rwanda', | |
| iso_region: 'RW-03', | |
| iata_code: 'RHG', | |
| municipality: 'Ruhengeri' | |
| }, | |
| { | |
| name: 'Kamembe Airport', | |
| iso_country: 'RW', | |
| country_name: 'Rwanda', | |
| iso_region: 'RW-04', | |
| iata_code: 'KME', | |
| municipality: 'Kamembe' | |
| }, | |
| { | |
| name: 'Atbara Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-04', | |
| iata_code: 'ATB', | |
| municipality: 'Atbara' | |
| }, | |
| { | |
| name: 'Al Dabbah Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-01', | |
| iata_code: 'EDB', | |
| municipality: 'Al Dabbah' | |
| }, | |
| { | |
| name: 'Dongola Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-01', | |
| iata_code: 'DOG', | |
| municipality: 'Dongola' | |
| }, | |
| { | |
| name: 'Damazin Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-24', | |
| iata_code: 'RSS', | |
| municipality: 'Ad Damazin' | |
| }, | |
| { | |
| name: 'El Fasher Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-02', | |
| iata_code: 'ELF', | |
| municipality: 'El Fasher' | |
| }, | |
| { | |
| name: 'Galegu Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-25', | |
| iata_code: 'DNX', | |
| municipality: 'Dinder' | |
| }, | |
| { | |
| name: 'Geneina Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-12', | |
| iata_code: 'EGN', | |
| municipality: 'Geneina' | |
| }, | |
| { | |
| name: 'Heglig Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-13', | |
| iata_code: 'HEG', | |
| municipality: 'Heglig Oilfield' | |
| }, | |
| { | |
| name: 'Zhengzhou Shangjie Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-41', | |
| iata_code: 'HSJ', | |
| municipality: 'Zhengzhou' | |
| }, | |
| { | |
| name: 'Kassala Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-05', | |
| iata_code: 'KSL', | |
| municipality: 'Kassala' | |
| }, | |
| { | |
| name: 'Khashm El Girba Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-06', | |
| iata_code: 'GBU', | |
| municipality: 'Khashm El Girba' | |
| }, | |
| { | |
| name: 'Kadugli Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-13', | |
| iata_code: 'KDX', | |
| municipality: 'Kadugli' | |
| }, | |
| { | |
| name: 'Rumbek Airport', | |
| iso_country: 'SS', | |
| country_name: 'South Sudan', | |
| iso_region: 'SS-18', | |
| iata_code: 'RBX', | |
| municipality: 'Rumbek' | |
| }, | |
| { | |
| name: 'Merowe Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-01', | |
| iata_code: 'MWE', | |
| municipality: 'Merowe' | |
| }, | |
| { | |
| name: 'En Nahud Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-09', | |
| iata_code: 'NUD', | |
| municipality: 'En Nahud' | |
| }, | |
| { | |
| name: 'Nyala Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-11', | |
| iata_code: 'UYL', | |
| municipality: 'Nyala' | |
| }, | |
| { | |
| name: 'New Halfa Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-05', | |
| iata_code: 'NHF', | |
| municipality: 'New Halfa' | |
| }, | |
| { | |
| name: 'El-Obeid Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-09', | |
| iata_code: 'EBD', | |
| municipality: 'El-Obeid' | |
| }, | |
| { | |
| name: 'Port Sudan New International Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-26', | |
| iata_code: 'PZU', | |
| municipality: 'Port Sudan' | |
| }, | |
| { | |
| name: 'Khartoum International Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-03', | |
| iata_code: 'KRT', | |
| municipality: 'Khartoum' | |
| }, | |
| { | |
| name: 'Malakal Airport', | |
| iso_country: 'SS', | |
| country_name: 'South Sudan', | |
| iso_region: 'SS-23', | |
| iata_code: 'MAK', | |
| municipality: 'Malakal' | |
| }, | |
| { | |
| name: 'Wadi Halfa Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-01', | |
| iata_code: 'WHF', | |
| municipality: 'Wadi Halfa' | |
| }, | |
| { | |
| name: 'Wau Airport', | |
| iso_country: 'SS', | |
| country_name: 'South Sudan', | |
| iso_region: 'SS-14', | |
| iata_code: 'WUU', | |
| municipality: 'Wau' | |
| }, | |
| { | |
| name: 'Zalingei Airport', | |
| iso_country: 'SD', | |
| country_name: 'Sudan', | |
| iso_region: 'SD-12', | |
| iata_code: 'ZLX', | |
| municipality: 'Zalingei' | |
| }, | |
| { | |
| name: 'Arusha Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-01', | |
| iata_code: 'ARK', | |
| municipality: 'Arusha' | |
| }, | |
| { | |
| name: 'Bukoba Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-05', | |
| iata_code: 'BKZ', | |
| municipality: 'Bukoba' | |
| }, | |
| { | |
| name: 'Julius Nyerere International Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-02', | |
| iata_code: 'DAR', | |
| municipality: 'Dar es Salaam' | |
| }, | |
| { | |
| name: 'Dodoma Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-03', | |
| iata_code: 'DOD', | |
| municipality: 'Dodoma' | |
| }, | |
| { | |
| name: 'Chato/Geita Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-31', | |
| iata_code: 'GTC', | |
| municipality: 'Chato District' | |
| }, | |
| { | |
| name: 'Songwe Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-14', | |
| iata_code: 'MBI', | |
| municipality: 'Mbeya' | |
| }, | |
| { | |
| name: 'Iringa Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-04', | |
| iata_code: 'IRI', | |
| municipality: 'Nduli' | |
| }, | |
| { | |
| name: 'Kigoma Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-08', | |
| iata_code: 'TKQ', | |
| municipality: 'Kigoma' | |
| }, | |
| { | |
| name: 'Kilwa Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-12', | |
| iata_code: 'KIY', | |
| municipality: 'Kilwa Masoko' | |
| }, | |
| { | |
| name: 'Kilimanjaro International Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-01', | |
| iata_code: 'JRO', | |
| municipality: 'Arusha' | |
| }, | |
| { | |
| name: 'Lindi Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-12', | |
| iata_code: 'LDI', | |
| municipality: 'Lindi' | |
| }, | |
| { | |
| name: 'Lake Manyara Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-26', | |
| iata_code: 'LKY', | |
| municipality: 'Lake Manyara National Park' | |
| }, | |
| { | |
| name: 'Khatgal Airport', | |
| iso_country: 'MN', | |
| country_name: 'Mongolia', | |
| iso_region: 'MN-041', | |
| iata_code: 'HTM', | |
| municipality: 'Hatgal' | |
| }, | |
| { | |
| name: 'Mafia Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-19', | |
| iata_code: 'MFA', | |
| municipality: 'Kilindoni' | |
| }, | |
| { | |
| name: 'Mwadui Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-22', | |
| iata_code: 'MWN', | |
| municipality: 'Mwadui' | |
| }, | |
| { | |
| name: 'Masasi Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-17', | |
| iata_code: 'XMI', | |
| municipality: 'Masasi' | |
| }, | |
| { | |
| name: 'Mpanda Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-20', | |
| iata_code: 'NPY', | |
| municipality: 'Mpanda' | |
| }, | |
| { | |
| name: 'Moshi Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-09', | |
| iata_code: 'QSI', | |
| municipality: 'Moshi' | |
| }, | |
| { | |
| name: 'Mtwara Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-17', | |
| iata_code: 'MYW', | |
| municipality: 'Mtwara' | |
| }, | |
| { | |
| name: 'Musoma Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-13', | |
| iata_code: 'MUZ', | |
| municipality: 'Musoma' | |
| }, | |
| { | |
| name: 'Mwanza Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-18', | |
| iata_code: 'MWZ', | |
| municipality: 'Mwanza' | |
| }, | |
| { | |
| name: 'Nachingwea Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-12', | |
| iata_code: 'NCH', | |
| municipality: 'Nachingwea' | |
| }, | |
| { | |
| name: 'Njombe Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-04', | |
| iata_code: 'JOM', | |
| municipality: 'Njombe' | |
| }, | |
| { | |
| name: 'Pemba Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-25', | |
| iata_code: 'PMA', | |
| municipality: 'Chake Chake' | |
| }, | |
| { | |
| name: 'Seronera Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-13', | |
| iata_code: 'SEU', | |
| municipality: 'Seronera' | |
| }, | |
| { | |
| name: 'Songea Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-21', | |
| iata_code: 'SGX', | |
| municipality: 'Songea' | |
| }, | |
| { | |
| name: 'Sumbawanga Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-20', | |
| iata_code: 'SUT', | |
| municipality: 'Sumbawanga' | |
| }, | |
| { | |
| name: 'Shinyanga Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-22', | |
| iata_code: 'SHY', | |
| municipality: 'Shinyanga' | |
| }, | |
| { | |
| name: 'Tabora Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-24', | |
| iata_code: 'TBO', | |
| municipality: 'Tabora' | |
| }, | |
| { | |
| name: 'Tanga Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-25', | |
| iata_code: 'TGT', | |
| municipality: 'Tanga' | |
| }, | |
| { | |
| name: 'Abeid Amani Karume International Airport', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-07', | |
| iata_code: 'ZNZ', | |
| municipality: 'Zanzibar' | |
| }, | |
| { | |
| name: 'Arua Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-N', | |
| iata_code: 'RUA', | |
| municipality: 'Arua' | |
| }, | |
| { | |
| name: 'Entebbe International Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-C', | |
| iata_code: 'EBB', | |
| municipality: 'Kampala' | |
| }, | |
| { | |
| name: 'Gulu Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-N', | |
| iata_code: 'ULU', | |
| municipality: 'Gulu' | |
| }, | |
| { | |
| name: 'Jinja Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-E', | |
| iata_code: 'JIN', | |
| municipality: 'Jinja' | |
| }, | |
| { | |
| name: 'Kabalega Falls Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-W', | |
| iata_code: 'PAF', | |
| municipality: 'Pakuba' | |
| }, | |
| { | |
| name: 'Kajjansi Airfield', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-C', | |
| iata_code: 'KJJ', | |
| municipality: 'Kampala' | |
| }, | |
| { | |
| name: 'Kasese Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-W', | |
| iata_code: 'KSE', | |
| municipality: 'Kasese' | |
| }, | |
| { | |
| name: 'Mbarara Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-W', | |
| iata_code: 'MBQ', | |
| municipality: 'Mbarara' | |
| }, | |
| { | |
| name: 'Masindi Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-W', | |
| iata_code: 'KCU', | |
| municipality: 'Masindi' | |
| }, | |
| { | |
| name: 'Soroti Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-E', | |
| iata_code: 'SRT', | |
| municipality: 'Soroti' | |
| }, | |
| { | |
| name: 'Tororo Airport', | |
| iso_country: 'UG', | |
| country_name: 'Uganda', | |
| iso_region: 'UG-E', | |
| iata_code: 'TRY', | |
| municipality: 'Tororo' | |
| }, | |
| { | |
| name: 'Hawabango Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'HWA', | |
| municipality: 'Hawabango' | |
| }, | |
| { | |
| name: 'Hawk Inlet Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'HWI', | |
| municipality: 'Hawk Inlet' | |
| }, | |
| { | |
| name: 'Hollis Clark Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'HYL', | |
| municipality: 'Hollis' | |
| }, | |
| { | |
| name: 'Chengdu Huaizhou Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-51', | |
| iata_code: 'HZU', | |
| municipality: 'Chengdu (Jintang)' | |
| }, | |
| { | |
| name: 'Iboki Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'IBI', | |
| municipality: 'Iboki' | |
| }, | |
| { | |
| name: 'Indigo Bay Lodge Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-I', | |
| iata_code: 'IBL', | |
| municipality: 'Bazaruto Island' | |
| }, | |
| { | |
| name: 'Sicogon Airstrip', | |
| iso_country: 'PH', | |
| country_name: 'Philippines', | |
| iso_region: 'PH-ILI', | |
| iata_code: 'ICO', | |
| municipality: 'Carles' | |
| }, | |
| { | |
| name: 'Pulau Panjang Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-JB', | |
| iata_code: 'PPJ', | |
| municipality: 'Jakarta' | |
| }, | |
| { | |
| name: 'Notohadinegoro Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-JI', | |
| iata_code: 'JBB', | |
| municipality: 'Jember' | |
| }, | |
| { | |
| name: 'Banyuwangi International Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-JI', | |
| iata_code: 'BWX', | |
| municipality: 'Banyuwangi' | |
| }, | |
| { | |
| name: 'Bawean - Harun Thohir Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-JI', | |
| iata_code: 'BXW', | |
| municipality: 'Bawean' | |
| }, | |
| { | |
| name: 'Enggano Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-BE', | |
| iata_code: 'ENG', | |
| municipality: 'Enggano' | |
| }, | |
| { | |
| name: 'Blangkejeren Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-AC', | |
| iata_code: 'GYO', | |
| municipality: 'Kabupaten Gayo Lues' | |
| }, | |
| { | |
| name: 'Sangia Nibandera Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-SG', | |
| iata_code: 'KXB', | |
| municipality: 'Kolaka' | |
| }, | |
| { | |
| name: 'Dhoho International Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-JI', | |
| iata_code: 'DHX', | |
| municipality: 'Kediri' | |
| }, | |
| { | |
| name: 'Namniwel Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-MA', | |
| iata_code: 'NAM', | |
| municipality: 'Namniwel' | |
| }, | |
| { | |
| name: 'Tebelian Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-KB', | |
| iata_code: 'SQG', | |
| municipality: 'Sintang' | |
| }, | |
| { | |
| name: 'Douw Aturure Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PT', | |
| iata_code: 'NBX', | |
| municipality: 'Nabire' | |
| }, | |
| { | |
| name: 'Singkawang Airport (under construction)', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-KB', | |
| iata_code: 'SKJ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Bolaang Mongondow Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-SA', | |
| iata_code: 'LKM', | |
| municipality: 'Lolak' | |
| }, | |
| { | |
| name: 'Amman Mineral Nusa Tenggara Airport (under construction)', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-NB', | |
| iata_code: 'PNW', | |
| municipality: 'Pototano' | |
| }, | |
| { | |
| name: 'Apalapsili Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PP', | |
| iata_code: 'AAS', | |
| municipality: 'Apalapsili' | |
| }, | |
| { | |
| name: 'Anggi Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PB', | |
| iata_code: 'AGD', | |
| municipality: 'Anggi-Papua Island' | |
| }, | |
| { | |
| name: 'Gunung Batin Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-LA', | |
| iata_code: 'AKQ', | |
| municipality: 'Astraksetra' | |
| }, | |
| { | |
| name: 'Ayawasi Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PD', | |
| iata_code: 'AYW', | |
| municipality: 'Ayawasi' | |
| }, | |
| { | |
| name: 'Batom Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PP', | |
| iata_code: 'BXM', | |
| municipality: 'Batom' | |
| }, | |
| { | |
| name: 'Dabra Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PA', | |
| iata_code: 'DRH', | |
| municipality: 'Dabra' | |
| }, | |
| { | |
| name: 'Elelim Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PP', | |
| iata_code: 'ELR', | |
| municipality: 'Elelim' | |
| }, | |
| { | |
| name: 'Ewer Asmat Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PS', | |
| iata_code: 'EWE', | |
| municipality: 'Agats' | |
| }, | |
| { | |
| name: 'Gag Island Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PB', | |
| iata_code: 'GAV', | |
| municipality: 'Gag Island' | |
| }, | |
| { | |
| name: 'Ilu Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PT', | |
| iata_code: 'IUL', | |
| municipality: 'Ilu' | |
| }, | |
| { | |
| name: 'Karubaga Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PP', | |
| iata_code: 'KBF', | |
| municipality: 'Karubaga' | |
| }, | |
| { | |
| name: 'Kambuaya Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PD', | |
| iata_code: 'KBX', | |
| municipality: 'Kambuaya-Papua Island' | |
| }, | |
| { | |
| name: 'Kamur Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PS', | |
| iata_code: 'KCD', | |
| municipality: 'Kamur' | |
| }, | |
| { | |
| name: 'Kotabangun Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-KI', | |
| iata_code: 'KOD', | |
| municipality: 'Kotabangun-Borneo Island' | |
| }, | |
| { | |
| name: 'Departi Parbo Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-JA', | |
| iata_code: 'KRC', | |
| municipality: 'Sungai Penuh' | |
| }, | |
| { | |
| name: 'Kelila Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PP', | |
| iata_code: 'LLN', | |
| municipality: 'Kelila' | |
| }, | |
| { | |
| name: 'Lembata Wonopito Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-NT', | |
| iata_code: 'LWE', | |
| municipality: 'Nubatukan' | |
| }, | |
| { | |
| name: 'Lunyuk Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-NB', | |
| iata_code: 'LYK', | |
| municipality: 'Lunyuk-Simbawa Island' | |
| }, | |
| { | |
| name: 'Masalembo Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-JI', | |
| iata_code: 'MSI', | |
| municipality: 'Masalembo Island' | |
| }, | |
| { | |
| name: 'Banaina Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-KU', | |
| iata_code: 'NAF', | |
| municipality: 'Banaina-Borneo Island' | |
| }, | |
| { | |
| name: 'Obano Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PT', | |
| iata_code: 'OBD', | |
| municipality: 'Obano' | |
| }, | |
| { | |
| name: 'Jenderal Besar Soedirman Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-JT', | |
| iata_code: 'PWL', | |
| municipality: 'Purwokerto-Java Island' | |
| }, | |
| { | |
| name: 'Sugimanuru Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-SG', | |
| iata_code: 'RAQ', | |
| municipality: 'Raha' | |
| }, | |
| { | |
| name: 'Mentawai Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-SB', | |
| iata_code: 'RKI', | |
| municipality: 'Sipura Island' | |
| }, | |
| { | |
| name: 'Tumbang Samba Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-KT', | |
| iata_code: 'TBM', | |
| municipality: 'Tumbang Samba-Borneo Island' | |
| }, | |
| { | |
| name: 'Tiom Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PP', | |
| iata_code: 'TMY', | |
| municipality: 'Tiom-Papua Island' | |
| }, | |
| { | |
| name: 'Senggo Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PS', | |
| iata_code: 'ZEG', | |
| municipality: 'Senggo-Papua Island' | |
| }, | |
| { | |
| name: 'Bilogai-Sugapa Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PT', | |
| iata_code: 'UGU', | |
| municipality: 'Sugapa' | |
| }, | |
| { | |
| name: 'Indagen Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'IDN', | |
| municipality: 'Indagen' | |
| }, | |
| { | |
| name: 'Iamalele Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'IMA', | |
| municipality: 'Iamalele, Fergusson Island' | |
| }, | |
| { | |
| name: 'Inhaminga Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-S', | |
| iata_code: 'IMG', | |
| municipality: 'Inhaminga' | |
| }, | |
| { | |
| name: 'Pakyong Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-SK', | |
| iata_code: 'PYG', | |
| municipality: 'Pakyong' | |
| }, | |
| { | |
| name: 'Ayodhya Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-UP', | |
| iata_code: 'AYJ', | |
| municipality: 'Faizabad' | |
| }, | |
| { | |
| name: 'Jindal Vijaynagar Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-KA', | |
| iata_code: 'VDY', | |
| municipality: 'Toranagallu' | |
| }, | |
| { | |
| name: 'Deoghar Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-JH', | |
| iata_code: 'DGH', | |
| municipality: 'Deoghar' | |
| }, | |
| { | |
| name: 'Navi Mumbai International Airport (under construction)', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-MM', | |
| iata_code: 'NMI', | |
| municipality: 'Navi Mumbai' | |
| }, | |
| { | |
| name: 'Manohar International Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-GA', | |
| iata_code: 'GOX', | |
| municipality: 'Mopa' | |
| }, | |
| { | |
| name: 'Rashtrakavi Kuvempu Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-KA', | |
| iata_code: 'RQY', | |
| municipality: 'Shimoga' | |
| }, | |
| { | |
| name: 'Itanagar Donyi Polo Hollongi Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-AR', | |
| iata_code: 'HGI', | |
| municipality: 'Hollongi' | |
| }, | |
| { | |
| name: 'Utkela Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-OR', | |
| iata_code: 'UKE', | |
| municipality: 'Bhawanipatna' | |
| }, | |
| { | |
| name: 'Jagdalpur Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-CT', | |
| iata_code: 'JGB', | |
| municipality: 'Jagdalpur' | |
| }, | |
| { | |
| name: 'Neyveli Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-TN', | |
| iata_code: 'NVY', | |
| municipality: 'Neyveli' | |
| }, | |
| { | |
| name: 'Rajouri Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-JK', | |
| iata_code: 'RJI', | |
| municipality: 'Rajouri' | |
| }, | |
| { | |
| name: 'Tezu Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-AR', | |
| iata_code: 'TEI', | |
| municipality: 'Tezu' | |
| }, | |
| { | |
| name: 'Jalgaon Airport', | |
| iso_country: 'IN', | |
| country_name: 'India', | |
| iso_region: 'IN-MM', | |
| iata_code: 'JLG', | |
| municipality: 'Jalgaon' | |
| }, | |
| { | |
| name: 'Chinde Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-Q', | |
| iata_code: 'INE', | |
| municipality: 'Chinde' | |
| }, | |
| { | |
| name: 'Iokea Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'IOK', | |
| municipality: 'Iokea' | |
| }, | |
| { | |
| name: 'Ioma Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'IOP', | |
| municipality: 'Ioma' | |
| }, | |
| { | |
| name: 'Khaneh Airport', | |
| iso_country: 'IR', | |
| country_name: 'Iran, Islamic Republic of', | |
| iso_region: 'IR-04', | |
| iata_code: 'KHA', | |
| municipality: 'Khaneh' | |
| }, | |
| { | |
| name: 'Iranamadu Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-4', | |
| iata_code: 'IRU', | |
| municipality: 'Iranamadu' | |
| }, | |
| { | |
| name: 'New Ishigaki Airport', | |
| iso_country: 'JP', | |
| country_name: 'Japan', | |
| iso_region: 'JP-47', | |
| iata_code: 'ISG', | |
| municipality: 'Ishigaki' | |
| }, | |
| { | |
| name: 'Itokama Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'ITK', | |
| municipality: 'Itokama' | |
| }, | |
| { | |
| name: 'Viveros Island Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-8', | |
| iata_code: 'IVI', | |
| municipality: 'Isla Viveros' | |
| }, | |
| { | |
| name: "Daxing'anling Elunchun Airport", | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-23', | |
| iata_code: 'JGD', | |
| municipality: 'Jiagedaqi' | |
| }, | |
| { | |
| name: 'Jinchang Jinchuan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-62', | |
| iata_code: 'JIC', | |
| municipality: 'Jinchang' | |
| }, | |
| { | |
| name: 'Jos Orno Imsula Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-MA', | |
| iata_code: 'JIO', | |
| municipality: 'Tiakur' | |
| }, | |
| { | |
| name: 'Qianjiang Wulingshan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-50', | |
| iata_code: 'JIQ', | |
| municipality: 'Qianjiang' | |
| }, | |
| { | |
| name: 'Comandante Ariston Pessoa Airport', | |
| iso_country: 'BR', | |
| country_name: 'Brazil', | |
| iso_region: 'BR-CE', | |
| iata_code: 'JJD', | |
| municipality: 'Cruz' | |
| }, | |
| { | |
| name: 'Quartz Creek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'JLA', | |
| municipality: 'Cooper Landing' | |
| }, | |
| { | |
| name: 'Jamba Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-HUI', | |
| iata_code: 'JMB', | |
| municipality: 'Jamba' | |
| }, | |
| { | |
| name: 'Jinzhou Bay Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-21', | |
| iata_code: 'JNZ', | |
| municipality: 'Jinzhou (Linghai)' | |
| }, | |
| { | |
| name: 'Josephstaal Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'JOP', | |
| municipality: 'Josephstaal' | |
| }, | |
| { | |
| name: 'Pentagon Army Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'JPN', | |
| municipality: 'Washington DC' | |
| }, | |
| { | |
| name: 'West 30th Street Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'JRA', | |
| municipality: 'New York' | |
| }, | |
| { | |
| name: 'Downtown Manhattan Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'JRB', | |
| municipality: 'New York' | |
| }, | |
| { | |
| name: 'Chizhou Jiuhuashan Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-34', | |
| iata_code: 'JUH', | |
| municipality: 'Chizhou' | |
| }, | |
| { | |
| name: 'Animas Air Park', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'AMK', | |
| municipality: 'Durango' | |
| }, | |
| { | |
| name: 'Broadus Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'BDX', | |
| municipality: 'Broadus' | |
| }, | |
| { | |
| name: 'Eureka Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'EUE', | |
| municipality: 'Eureka' | |
| }, | |
| { | |
| name: 'Jackpot Airport/Hayden Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'KPT', | |
| municipality: 'Jackpot' | |
| }, | |
| { | |
| name: 'Rolla Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'RLA', | |
| municipality: 'Rolla' | |
| }, | |
| { | |
| name: 'Elizabeth Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'FID', | |
| municipality: 'Fishers Island' | |
| }, | |
| { | |
| name: 'Humboldt Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'HUD', | |
| municipality: 'Humboldt' | |
| }, | |
| { | |
| name: 'Jefferson County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'TWD', | |
| municipality: 'Port Townsend' | |
| }, | |
| { | |
| name: 'Kayenta Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'MVM', | |
| municipality: 'Kayenta' | |
| }, | |
| { | |
| name: 'Columbia County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'HCC', | |
| municipality: 'Hudson' | |
| }, | |
| { | |
| name: 'Ardmore Downtown Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'AHD', | |
| municipality: 'Ardmore' | |
| }, | |
| { | |
| name: 'Grand Canyon West Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'GCW', | |
| municipality: 'Peach Springs' | |
| }, | |
| { | |
| name: 'Lampson Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CKE', | |
| municipality: 'Lakeport' | |
| }, | |
| { | |
| name: 'Montague-Yreka Rohrer Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'ROF', | |
| municipality: 'Montague' | |
| }, | |
| { | |
| name: 'Fremont County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'CNE', | |
| municipality: 'Penrose' | |
| }, | |
| { | |
| name: 'Rouses Point Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'RSX', | |
| municipality: 'Rouses Point' | |
| }, | |
| { | |
| name: 'Cooperstown-Westville Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'COP', | |
| municipality: 'Cooperstown' | |
| }, | |
| { | |
| name: 'Council Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'CIL', | |
| municipality: 'Council' | |
| }, | |
| { | |
| name: 'Parlin Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'NWH', | |
| municipality: 'Newport' | |
| }, | |
| { | |
| name: 'Iraan Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'IRB', | |
| municipality: 'Iraan' | |
| }, | |
| { | |
| name: 'Garrett County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'ODM', | |
| municipality: 'Accident' | |
| }, | |
| { | |
| name: 'Gansner Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'GNF', | |
| municipality: 'Quincy' | |
| }, | |
| { | |
| name: 'Chiloquin State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'CHZ', | |
| municipality: 'Chiloquin' | |
| }, | |
| { | |
| name: "St. Mary's County Regional Airport", | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'LTW', | |
| municipality: 'California' | |
| }, | |
| { | |
| name: 'Union County, Troy Shelton Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'USC', | |
| municipality: 'Union' | |
| }, | |
| { | |
| name: 'Arapahoe Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'AHF', | |
| municipality: 'Arapahoe' | |
| }, | |
| { | |
| name: 'Princeton Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'PCT', | |
| municipality: 'Princeton/Rocky Hill' | |
| }, | |
| { | |
| name: 'Calverton Executive Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'CTO', | |
| municipality: 'Calverton' | |
| }, | |
| { | |
| name: 'Grand Lake Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'NRI', | |
| municipality: 'Afton' | |
| }, | |
| { | |
| name: 'Grants Pass Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'GTP', | |
| municipality: 'Grants Pass' | |
| }, | |
| { | |
| name: 'Jerry Tyler Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'NLE', | |
| municipality: 'Niles' | |
| }, | |
| { | |
| name: 'Grand Coulee Dam Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'GCD', | |
| municipality: 'Electric City' | |
| }, | |
| { | |
| name: 'Valle Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'VLE', | |
| municipality: 'Grand Canyon' | |
| }, | |
| { | |
| name: 'Perry-Foley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'FPY', | |
| municipality: 'Perry' | |
| }, | |
| { | |
| name: 'Manti-Ephraim Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'NTJ', | |
| municipality: 'Manti' | |
| }, | |
| { | |
| name: 'Salina Gunnison Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'SBO', | |
| municipality: 'Salina' | |
| }, | |
| { | |
| name: 'Central Jersey Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'JVI', | |
| municipality: 'Manville' | |
| }, | |
| { | |
| name: 'Eunice Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'UCE', | |
| municipality: 'Eunice' | |
| }, | |
| { | |
| name: 'Gold Beach Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'GOL', | |
| municipality: 'Gold Beach' | |
| }, | |
| { | |
| name: 'Kentland Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'KKT', | |
| municipality: 'Kentland' | |
| }, | |
| { | |
| name: 'Prentice Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'PRW', | |
| municipality: 'Prentice' | |
| }, | |
| { | |
| name: 'Maverick County Memorial International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'EGP', | |
| municipality: 'Eagle Pass' | |
| }, | |
| { | |
| name: 'Boulder City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'BLD', | |
| municipality: 'Boulder City' | |
| }, | |
| { | |
| name: 'Mesquite International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'MFH', | |
| municipality: 'Mesquite' | |
| }, | |
| { | |
| name: 'Iosco County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'ECA', | |
| municipality: 'East Tawas' | |
| }, | |
| { | |
| name: 'Florence Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'FMU', | |
| municipality: 'Florence' | |
| }, | |
| { | |
| name: 'Anacortes Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'OTS', | |
| municipality: 'Anacortes' | |
| }, | |
| { | |
| name: 'Roosevelt Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'ROL', | |
| municipality: 'Roosevelt' | |
| }, | |
| { | |
| name: 'Canton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'CTK', | |
| municipality: 'Canton' | |
| }, | |
| { | |
| name: 'North Fork Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'WPO', | |
| municipality: 'Paonia' | |
| }, | |
| { | |
| name: 'Antlers Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'ATE', | |
| municipality: 'Antlers' | |
| }, | |
| { | |
| name: 'Austin Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'ASQ', | |
| municipality: 'Austin' | |
| }, | |
| { | |
| name: 'Apalachicola Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'AAF', | |
| municipality: 'Apalachicola' | |
| }, | |
| { | |
| name: 'Lehigh Valley International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'ABE', | |
| municipality: 'Allentown' | |
| }, | |
| { | |
| name: 'Abilene Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ABI', | |
| municipality: 'Abilene' | |
| }, | |
| { | |
| name: 'Albuquerque International Sunport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'ABQ', | |
| municipality: 'Albuquerque' | |
| }, | |
| { | |
| name: 'Aberdeen Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'ABR', | |
| municipality: 'Aberdeen' | |
| }, | |
| { | |
| name: 'Southwest Georgia Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'ABY', | |
| municipality: 'Albany' | |
| }, | |
| { | |
| name: 'Antrim County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'ACB', | |
| municipality: 'Bellaire' | |
| }, | |
| { | |
| name: 'Nantucket Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'ACK', | |
| municipality: 'Nantucket' | |
| }, | |
| { | |
| name: 'Waco Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ACT', | |
| municipality: 'Waco' | |
| }, | |
| { | |
| name: 'California Redwood Coast-Humboldt County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'ACV', | |
| municipality: 'Arcata/Eureka' | |
| }, | |
| { | |
| name: 'Atlantic City International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'ACY', | |
| municipality: 'Atlantic City' | |
| }, | |
| { | |
| name: 'Lenawee County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'ADG', | |
| municipality: 'Adrian' | |
| }, | |
| { | |
| name: 'Ada Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'ADT', | |
| municipality: 'Ada' | |
| }, | |
| { | |
| name: 'Ardmore Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'ADM', | |
| municipality: 'Ardmore' | |
| }, | |
| { | |
| name: 'Addison Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ADS', | |
| municipality: 'Dallas' | |
| }, | |
| { | |
| name: 'Joint Base Andrews', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'ADW', | |
| municipality: 'Camp Springs' | |
| }, | |
| { | |
| name: 'Kake Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KAE', | |
| municipality: 'Kake' | |
| }, | |
| { | |
| name: 'Albert Lea Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'AEL', | |
| municipality: 'Albert Lea' | |
| }, | |
| { | |
| name: 'Alexandria International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'AEX', | |
| municipality: 'Alexandria' | |
| }, | |
| { | |
| name: 'Karato Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NSB', | |
| iata_code: 'KAF', | |
| municipality: 'Karato' | |
| }, | |
| { | |
| name: 'USAF Academy Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'AFF', | |
| municipality: 'Colorado Springs' | |
| }, | |
| { | |
| name: 'Washington County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'WSG', | |
| municipality: 'Washington' | |
| }, | |
| { | |
| name: 'Jaffrey Airfield Silver Ranch Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'AFN', | |
| municipality: 'Jaffrey' | |
| }, | |
| { | |
| name: 'Afton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'AFO', | |
| municipality: 'Afton' | |
| }, | |
| { | |
| name: 'Perot Field/Fort Worth Alliance Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'AFW', | |
| municipality: 'Fort Worth' | |
| }, | |
| { | |
| name: 'Allegheny County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'AGC', | |
| municipality: 'Pittsburgh' | |
| }, | |
| { | |
| name: 'Magnolia Municipal Airport / Ralph C Weiser Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'AGO', | |
| municipality: 'Magnolia' | |
| }, | |
| { | |
| name: 'Augusta Regional At Bush Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'AGS', | |
| municipality: 'Augusta' | |
| }, | |
| { | |
| name: 'Amedee Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'AHC', | |
| municipality: 'Herlong' | |
| }, | |
| { | |
| name: 'Amery Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'AHH', | |
| municipality: 'Amery' | |
| }, | |
| { | |
| name: 'Athens Ben Epps Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'AHN', | |
| municipality: 'Athens' | |
| }, | |
| { | |
| name: 'Alliance Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'AIA', | |
| municipality: 'Alliance' | |
| }, | |
| { | |
| name: 'Anderson Municipal Darlington Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'AID', | |
| municipality: 'Anderson' | |
| }, | |
| { | |
| name: 'Aiken Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'AIK', | |
| municipality: 'Aiken' | |
| }, | |
| { | |
| name: 'Atlantic Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'AIO', | |
| municipality: 'Atlantic' | |
| }, | |
| { | |
| name: 'George Downer Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'AIV', | |
| municipality: 'Aliceville' | |
| }, | |
| { | |
| name: 'Lee C Fine Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'AIZ', | |
| municipality: 'Kaiser Lake Ozark' | |
| }, | |
| { | |
| name: 'Kar Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SHM', | |
| iata_code: 'KAK', | |
| municipality: 'Kar' | |
| }, | |
| { | |
| name: 'Colorado Plains Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'AKO', | |
| municipality: 'Akron' | |
| }, | |
| { | |
| name: 'Akron Fulton International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'AKC', | |
| municipality: 'Akron' | |
| }, | |
| { | |
| name: 'Albany International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'ALB', | |
| municipality: 'Albany' | |
| }, | |
| { | |
| name: 'Alice International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ALI', | |
| municipality: 'Alice' | |
| }, | |
| { | |
| name: 'Alamogordo White Sands Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'ALM', | |
| municipality: 'Alamogordo' | |
| }, | |
| { | |
| name: 'St Louis Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'ALN', | |
| municipality: 'Alton/St Louis' | |
| }, | |
| { | |
| name: 'Waterloo Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'ALO', | |
| municipality: 'Waterloo' | |
| }, | |
| { | |
| name: 'San Luis Valley Regional Airport/Bergman Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'ALS', | |
| municipality: 'Alamosa' | |
| }, | |
| { | |
| name: 'Walla Walla Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'ALW', | |
| municipality: 'Walla Walla' | |
| }, | |
| { | |
| name: 'Thomas C Russell Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'ALX', | |
| municipality: 'Alexander City' | |
| }, | |
| { | |
| name: 'Rick Husband Amarillo International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'AMA', | |
| municipality: 'Amarillo' | |
| }, | |
| { | |
| name: 'Gratiot Community Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'AMN', | |
| municipality: 'Alma' | |
| }, | |
| { | |
| name: 'Ames Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'AMW', | |
| municipality: 'Ames' | |
| }, | |
| { | |
| name: 'Anniston Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'ANB', | |
| municipality: 'Anniston' | |
| }, | |
| { | |
| name: 'Anderson Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'AND', | |
| municipality: 'Anderson' | |
| }, | |
| { | |
| name: 'Salida Airport - Harriet Alexander Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'SLT', | |
| municipality: 'Salida' | |
| }, | |
| { | |
| name: 'Lee Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'ANP', | |
| municipality: 'Annapolis' | |
| }, | |
| { | |
| name: 'Tri State Steuben County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'ANQ', | |
| municipality: 'Angola' | |
| }, | |
| { | |
| name: 'Ainsworth Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'ANW', | |
| municipality: 'Ainsworth' | |
| }, | |
| { | |
| name: 'Anthony Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'ANY', | |
| municipality: 'Anthony' | |
| }, | |
| { | |
| name: 'Lima Allen County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'AOH', | |
| municipality: 'Lima' | |
| }, | |
| { | |
| name: 'Altoona Blair County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'AOO', | |
| municipality: 'Altoona' | |
| }, | |
| { | |
| name: 'Centennial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'APA', | |
| municipality: 'Denver' | |
| }, | |
| { | |
| name: 'Napa County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'APC', | |
| municipality: 'Napa' | |
| }, | |
| { | |
| name: 'Naples Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'APF', | |
| municipality: 'Naples' | |
| }, | |
| { | |
| name: 'Phillips Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'APG', | |
| municipality: 'Aberdeen' | |
| }, | |
| { | |
| name: 'Mary Walker LZ Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'APH', | |
| municipality: 'Bowling Green' | |
| }, | |
| { | |
| name: 'Alpena County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'APN', | |
| municipality: 'Alpena' | |
| }, | |
| { | |
| name: 'Marion County Airport - Brown Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'APT', | |
| municipality: 'Jasper' | |
| }, | |
| { | |
| name: 'Apple Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'APV', | |
| municipality: 'Apple Valley' | |
| }, | |
| { | |
| name: 'Kamulai Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'KAQ', | |
| municipality: 'Kamulai Mission' | |
| }, | |
| { | |
| name: 'Acadiana Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'ARA', | |
| municipality: 'New Iberia' | |
| }, | |
| { | |
| name: 'Ann Arbor Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'ARB', | |
| municipality: 'Ann Arbor' | |
| }, | |
| { | |
| name: 'Walnut Ridge Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'ARG', | |
| municipality: 'Walnut Ridge' | |
| }, | |
| { | |
| name: 'Wharton Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'WHT', | |
| municipality: 'Wharton' | |
| }, | |
| { | |
| name: 'Aurora Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'AUZ', | |
| municipality: 'Chicago/Aurora' | |
| }, | |
| { | |
| name: 'Watertown International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'ART', | |
| municipality: 'Watertown' | |
| }, | |
| { | |
| name: 'Lakeland Airport Noble F Lee Memorial Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'ARV', | |
| municipality: 'Woodruff' | |
| }, | |
| { | |
| name: 'Beaufort Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'BFT', | |
| municipality: 'Beaufort' | |
| }, | |
| { | |
| name: 'Aspen-Pitkin County Airport (Sardy Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'ASE', | |
| municipality: 'Aspen' | |
| }, | |
| { | |
| name: 'Springdale Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'SPZ', | |
| municipality: 'Springdale' | |
| }, | |
| { | |
| name: 'Nashua Airport / Boire Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'ASH', | |
| municipality: 'Nashua' | |
| }, | |
| { | |
| name: 'Harrison County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ASL', | |
| municipality: 'Marshall' | |
| }, | |
| { | |
| name: 'Talladega Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'ASN', | |
| municipality: 'Talladega' | |
| }, | |
| { | |
| name: 'Astoria Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'AST', | |
| municipality: 'Astoria' | |
| }, | |
| { | |
| name: 'John F Kennedy Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'ASX', | |
| municipality: 'Ashland' | |
| }, | |
| { | |
| name: 'Ashley Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'ASY', | |
| municipality: 'Ashley' | |
| }, | |
| { | |
| name: 'Hartsfield Jackson Atlanta International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'ATL', | |
| municipality: 'Atlanta' | |
| }, | |
| { | |
| name: 'Artesia Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'ATS', | |
| municipality: 'Artesia' | |
| }, | |
| { | |
| name: 'Appleton International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'ATW', | |
| municipality: 'Appleton' | |
| }, | |
| { | |
| name: 'Watertown Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'ATY', | |
| municipality: 'Watertown' | |
| }, | |
| { | |
| name: 'Augusta State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'AUG', | |
| municipality: 'Augusta' | |
| }, | |
| { | |
| name: 'Austin Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'AUM', | |
| municipality: 'Austin' | |
| }, | |
| { | |
| name: 'Auburn Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'AUN', | |
| municipality: 'Auburn' | |
| }, | |
| { | |
| name: 'Auburn University Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'AUO', | |
| municipality: 'Auburn' | |
| }, | |
| { | |
| name: 'Austin Bergstrom International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'AUS', | |
| municipality: 'Austin' | |
| }, | |
| { | |
| name: 'Wausau Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'AUW', | |
| municipality: 'Wausau' | |
| }, | |
| { | |
| name: 'Asheville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'AVL', | |
| municipality: 'Asheville' | |
| }, | |
| { | |
| name: 'Avon Park Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'AVO', | |
| municipality: 'Avon Park' | |
| }, | |
| { | |
| name: 'Wilkes Barre Scranton International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'AVP', | |
| municipality: 'Wilkes-Barre/Scranton' | |
| }, | |
| { | |
| name: 'Marana Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'AVW', | |
| municipality: 'Marana' | |
| }, | |
| { | |
| name: 'Catalina Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'AVX', | |
| municipality: 'Avalon' | |
| }, | |
| { | |
| name: 'West Memphis Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'AWM', | |
| municipality: 'West Memphis' | |
| }, | |
| { | |
| name: 'Algona Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'AXG', | |
| municipality: 'Algona' | |
| }, | |
| { | |
| name: 'Chandler Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'AXN', | |
| municipality: 'Alexandria' | |
| }, | |
| { | |
| name: 'Altus Quartz Mountain Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'AXS', | |
| municipality: 'Altus' | |
| }, | |
| { | |
| name: 'Neil Armstrong Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'AXV', | |
| municipality: 'Wapakoneta' | |
| }, | |
| { | |
| name: 'Angel Fire Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'AXX', | |
| municipality: 'Angel Fire' | |
| }, | |
| { | |
| name: 'Waycross Ware County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'AYS', | |
| municipality: 'Waycross' | |
| }, | |
| { | |
| name: 'Arnold Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'TUH', | |
| municipality: 'Manchester' | |
| }, | |
| { | |
| name: 'Kalamazoo Battle Creek International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'AZO', | |
| municipality: 'Kalamazoo' | |
| }, | |
| { | |
| name: 'Beale Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BAB', | |
| municipality: 'Beale Air Force Base' | |
| }, | |
| { | |
| name: 'Barksdale Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'BAD', | |
| municipality: 'Bossier City' | |
| }, | |
| { | |
| name: 'Westfield-Barnes Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'BAF', | |
| municipality: 'Westfield' | |
| }, | |
| { | |
| name: 'Columbus Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'CLU', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'Battle Mountain Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'BAM', | |
| municipality: 'Battle Mountain' | |
| }, | |
| { | |
| name: 'Benson Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'BBB', | |
| municipality: 'Benson' | |
| }, | |
| { | |
| name: 'Curtis Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BBD', | |
| municipality: 'Brady' | |
| }, | |
| { | |
| name: 'Branson Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'BKG', | |
| municipality: 'Branson' | |
| }, | |
| { | |
| name: 'Marlboro County Jetport - H E Avent Field Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'BTN', | |
| municipality: 'Bennettsville' | |
| }, | |
| { | |
| name: 'Broken Bow Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'BBW', | |
| municipality: 'Broken Bow' | |
| }, | |
| { | |
| name: 'Virginia Tech Montgomery Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'BCB', | |
| municipality: 'Blacksburg' | |
| }, | |
| { | |
| name: 'Bryce Canyon Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'BCE', | |
| municipality: 'Bryce Canyon' | |
| }, | |
| { | |
| name: 'Boca Raton Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'BCT', | |
| municipality: 'Boca Raton' | |
| }, | |
| { | |
| name: 'Baudette International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'BDE', | |
| municipality: 'Baudette' | |
| }, | |
| { | |
| name: 'Blanding Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'BDG', | |
| municipality: 'Blanding' | |
| }, | |
| { | |
| name: 'Bradley International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CT', | |
| iata_code: 'BDL', | |
| municipality: 'Hartford' | |
| }, | |
| { | |
| name: 'Igor I Sikorsky Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CT', | |
| iata_code: 'BDR', | |
| municipality: 'Bridgeport' | |
| }, | |
| { | |
| name: 'Boulder Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'WBU', | |
| municipality: 'Boulder' | |
| }, | |
| { | |
| name: 'Bell Island Hot Springs Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KBE', | |
| municipality: 'Bell Island' | |
| }, | |
| { | |
| name: 'Beech Factory Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'BEC', | |
| municipality: 'Wichita' | |
| }, | |
| { | |
| name: 'Laurence G Hanscom Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'BED', | |
| municipality: 'Bedford' | |
| }, | |
| { | |
| name: 'Southwest Michigan Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'BEH', | |
| municipality: 'Benton Harbor' | |
| }, | |
| { | |
| name: 'Bradford Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'BFD', | |
| municipality: 'Bradford' | |
| }, | |
| { | |
| name: 'Western Neb. Rgnl/William B. Heilig Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'BFF', | |
| municipality: 'Scottsbluff' | |
| }, | |
| { | |
| name: 'Boeing Field King County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'BFI', | |
| municipality: 'Seattle' | |
| }, | |
| { | |
| name: 'Meadows Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BFL', | |
| municipality: 'Bakersfield' | |
| }, | |
| { | |
| name: 'Mobile Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'BFM', | |
| municipality: 'Mobile' | |
| }, | |
| { | |
| name: 'Virgil I Grissom Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'BFR', | |
| municipality: 'Bedford' | |
| }, | |
| { | |
| name: 'Hutchinson County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BGD', | |
| municipality: 'Borger' | |
| }, | |
| { | |
| name: 'Decatur County Industrial Air Park', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'BGE', | |
| municipality: 'Bainbridge' | |
| }, | |
| { | |
| name: 'Greater Binghamton/Edwin A Link field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'BGM', | |
| municipality: 'Binghamton' | |
| }, | |
| { | |
| name: 'Bangor International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'BGR', | |
| municipality: 'Bangor' | |
| }, | |
| { | |
| name: 'Kahama Airstrip', | |
| iso_country: 'TZ', | |
| country_name: 'Tanzania, United Republic of', | |
| iso_region: 'TZ-22', | |
| iata_code: 'KBH', | |
| municipality: 'Kahama' | |
| }, | |
| { | |
| name: 'Hancock County-Bar Harbor Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'BHB', | |
| municipality: 'Bar Harbor' | |
| }, | |
| { | |
| name: 'Birmingham-Shuttlesworth International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'BHM', | |
| municipality: 'Birmingham' | |
| }, | |
| { | |
| name: 'Block Island State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-RI', | |
| iata_code: 'BID', | |
| municipality: 'Block Island' | |
| }, | |
| { | |
| name: 'Beatrice Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'BIE', | |
| municipality: 'Beatrice' | |
| }, | |
| { | |
| name: 'Biggs Army Air Field (Fort Bliss)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BIF', | |
| municipality: 'Fort Bliss/El Paso' | |
| }, | |
| { | |
| name: 'Eastern Sierra Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BIH', | |
| municipality: 'Bishop' | |
| }, | |
| { | |
| name: 'Billings Logan International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'BIL', | |
| municipality: 'Billings' | |
| }, | |
| { | |
| name: 'Bismarck Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'BIS', | |
| municipality: 'Bismarck' | |
| }, | |
| { | |
| name: 'Keesler Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'BIX', | |
| municipality: 'Biloxi' | |
| }, | |
| { | |
| name: 'Rocky Mountain Metropolitan Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'BJC', | |
| municipality: 'Denver' | |
| }, | |
| { | |
| name: 'Bemidji Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'BJI', | |
| municipality: 'Bemidji' | |
| }, | |
| { | |
| name: 'Wayne County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'BJJ', | |
| municipality: 'Wooster' | |
| }, | |
| { | |
| name: 'Stephens County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BKD', | |
| municipality: 'Breckenridge' | |
| }, | |
| { | |
| name: 'Baker City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'BKE', | |
| municipality: 'Baker City' | |
| }, | |
| { | |
| name: 'Buckley Space Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'BFK', | |
| municipality: 'Aurora' | |
| }, | |
| { | |
| name: 'Burke Lakefront Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'BKL', | |
| municipality: 'Cleveland' | |
| }, | |
| { | |
| name: 'Allen C Perkinson Blackstone Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'BKT', | |
| municipality: 'Blackstone' | |
| }, | |
| { | |
| name: 'Raleigh County Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'BKW', | |
| municipality: 'Beaver' | |
| }, | |
| { | |
| name: 'Brookings Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'BKX', | |
| municipality: 'Brookings' | |
| }, | |
| { | |
| name: 'Mercer County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'BLF', | |
| municipality: 'Bluefield' | |
| }, | |
| { | |
| name: 'Blythe Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BLH', | |
| municipality: 'Blythe' | |
| }, | |
| { | |
| name: 'Bellingham International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'BLI', | |
| municipality: 'Bellingham' | |
| }, | |
| { | |
| name: 'Monmouth Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'BLM', | |
| municipality: 'Belmar/Farmingdale' | |
| }, | |
| { | |
| name: 'Blue Canyon Nyack Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BLU', | |
| municipality: 'Emigrant Gap' | |
| }, | |
| { | |
| name: 'Scott AFB/Midamerica Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'BLV', | |
| municipality: 'Belleville' | |
| }, | |
| { | |
| name: 'Kabwum', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'KBM', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Brigham City Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'BMC', | |
| municipality: 'Brigham City' | |
| }, | |
| { | |
| name: 'Monroe County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'BMG', | |
| municipality: 'Bloomington' | |
| }, | |
| { | |
| name: 'Central Illinois Regional Airport at Bloomington-Normal', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'BMI', | |
| municipality: 'Bloomington/Normal' | |
| }, | |
| { | |
| name: 'Berlin Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'BML', | |
| municipality: 'Berlin' | |
| }, | |
| { | |
| name: 'Beaumont Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BMT', | |
| municipality: 'Beaumont' | |
| }, | |
| { | |
| name: 'Nashville International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'BNA', | |
| municipality: 'Nashville' | |
| }, | |
| { | |
| name: 'Banning Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BNG', | |
| municipality: 'Banning' | |
| }, | |
| { | |
| name: 'Barnwell Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'BNL', | |
| municipality: 'Barnwell' | |
| }, | |
| { | |
| name: 'Burns Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'BNO', | |
| municipality: 'Burns' | |
| }, | |
| { | |
| name: 'Boone Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'BNW', | |
| municipality: 'Boone' | |
| }, | |
| { | |
| name: 'Boise Air Terminal/Gowen Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'BOI', | |
| municipality: 'Boise' | |
| }, | |
| { | |
| name: 'Logan International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'BOS', | |
| municipality: 'Boston' | |
| }, | |
| { | |
| name: 'Bartow Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'BOW', | |
| municipality: 'Bartow' | |
| }, | |
| { | |
| name: 'Big Spring Mc Mahon-Wrinkle Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'HCA', | |
| municipality: 'Big Spring' | |
| }, | |
| { | |
| name: 'Miley Memorial Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'BPI', | |
| municipality: 'Big Piney' | |
| }, | |
| { | |
| name: 'Ozark Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'WMH', | |
| municipality: 'Mountain Home' | |
| }, | |
| { | |
| name: 'Jack Brooks Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BPT', | |
| municipality: 'Beaumont/Port Arthur' | |
| }, | |
| { | |
| name: 'Brunswick Golden Isles Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'BQK', | |
| municipality: 'Brunswick' | |
| }, | |
| { | |
| name: 'Brainerd Lakes Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'BRD', | |
| municipality: 'Brainerd' | |
| }, | |
| { | |
| name: 'Southeast Iowa Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'BRL', | |
| municipality: 'Burlington' | |
| }, | |
| { | |
| name: 'Brownsville South Padre Island International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BRO', | |
| municipality: 'Brownsville' | |
| }, | |
| { | |
| name: 'Samuels Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'BRY', | |
| municipality: 'Bardstown' | |
| }, | |
| { | |
| name: 'Kaben Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-MAL', | |
| iata_code: 'KBT', | |
| municipality: 'Kaben' | |
| }, | |
| { | |
| name: 'Skypark Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'BTF', | |
| municipality: 'Bountiful' | |
| }, | |
| { | |
| name: 'Battle Creek Executive Airport at Kellogg Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'BTL', | |
| municipality: 'Battle Creek' | |
| }, | |
| { | |
| name: 'Bert Mooney Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'BTM', | |
| municipality: 'Butte' | |
| }, | |
| { | |
| name: 'Britton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'TTO', | |
| municipality: 'Britton' | |
| }, | |
| { | |
| name: 'Pittsburgh/Butler Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'BTP', | |
| municipality: 'Butler' | |
| }, | |
| { | |
| name: 'Baton Rouge Metropolitan Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'BTR', | |
| municipality: 'Baton Rouge' | |
| }, | |
| { | |
| name: 'Burlington International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VT', | |
| iata_code: 'BTV', | |
| municipality: 'South Burlington' | |
| }, | |
| { | |
| name: 'Beatty Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'BTY', | |
| municipality: 'Beatty' | |
| }, | |
| { | |
| name: 'Cram Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'BUB', | |
| municipality: 'Burwell' | |
| }, | |
| { | |
| name: 'Buffalo Niagara International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'BUF', | |
| municipality: 'Buffalo' | |
| }, | |
| { | |
| name: 'Butler Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'BUM', | |
| municipality: 'Butler' | |
| }, | |
| { | |
| name: 'Hollywood Burbank Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BUR', | |
| municipality: 'Burbank' | |
| }, | |
| { | |
| name: 'Beaver County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'BFP', | |
| municipality: 'Beaver Falls' | |
| }, | |
| { | |
| name: 'Bartlesville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'BVO', | |
| municipality: 'Bartlesville' | |
| }, | |
| { | |
| name: 'Skagit Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'MVW', | |
| municipality: 'Burlington' | |
| }, | |
| { | |
| name: 'Batesville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'BVX', | |
| municipality: 'Batesville' | |
| }, | |
| { | |
| name: 'Beverly Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'BVY', | |
| municipality: 'Beverly / Danvers' | |
| }, | |
| { | |
| name: 'Brawley Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BWC', | |
| municipality: 'Brawley' | |
| }, | |
| { | |
| name: 'Brownwood Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BWD', | |
| municipality: 'Brownwood' | |
| }, | |
| { | |
| name: 'Bowling Green Warren County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'BWG', | |
| municipality: 'Bowling Green' | |
| }, | |
| { | |
| name: 'Baltimore/Washington International Thurgood Marshall Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'BWI', | |
| municipality: 'Baltimore' | |
| }, | |
| { | |
| name: 'Harry Stern Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'WAH', | |
| municipality: 'Wahpeton' | |
| }, | |
| { | |
| name: 'Bowman Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'BWM', | |
| municipality: 'Bowman' | |
| }, | |
| { | |
| name: 'George R Carr Memorial Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'BXA', | |
| municipality: 'Bogalusa' | |
| }, | |
| { | |
| name: 'Buckeye Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'BXK', | |
| municipality: 'Buckeye' | |
| }, | |
| { | |
| name: 'Johnson County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'BYG', | |
| municipality: 'Buffalo' | |
| }, | |
| { | |
| name: 'Arkansas International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'BYH', | |
| municipality: 'Blytheville' | |
| }, | |
| { | |
| name: 'Burley Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'BYI', | |
| municipality: 'Burley' | |
| }, | |
| { | |
| name: 'Bicycle Lake Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BYS', | |
| municipality: 'Fort Irwin/Barstow' | |
| }, | |
| { | |
| name: 'Bay City Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'BBC', | |
| municipality: 'Bay City' | |
| }, | |
| { | |
| name: 'Bozeman Yellowstone International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'BZN', | |
| municipality: 'Bozeman' | |
| }, | |
| { | |
| name: 'Grand Geneva Resort Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'XES', | |
| municipality: 'Lake Geneva' | |
| }, | |
| { | |
| name: 'Plymouth Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'PLY', | |
| municipality: 'Plymouth' | |
| }, | |
| { | |
| name: 'New Coalinga Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CLG', | |
| municipality: 'Coalinga' | |
| }, | |
| { | |
| name: 'Wexford County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'CAD', | |
| municipality: 'Cadillac' | |
| }, | |
| { | |
| name: 'Columbia Metropolitan Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'CAE', | |
| municipality: 'Columbia' | |
| }, | |
| { | |
| name: 'Craig Moffat Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'CIG', | |
| municipality: 'Craig' | |
| }, | |
| { | |
| name: 'Akron Canton Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'CAK', | |
| municipality: 'Akron' | |
| }, | |
| { | |
| name: 'Clayton Municipal Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'CAO', | |
| municipality: 'Clayton' | |
| }, | |
| { | |
| name: 'Caribou Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'CAR', | |
| municipality: 'Caribou' | |
| }, | |
| { | |
| name: 'Greater Cumberland Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'CBE', | |
| municipality: 'Wiley Ford' | |
| }, | |
| { | |
| name: 'Council Bluffs Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'CBF', | |
| municipality: 'Council Bluffs' | |
| }, | |
| { | |
| name: 'Shalz Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'CBK', | |
| municipality: 'Colby' | |
| }, | |
| { | |
| name: 'Columbus Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'CBM', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'Coffman Cove Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KCC', | |
| municipality: 'Coffman Cove' | |
| }, | |
| { | |
| name: 'Upland-Cable Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CCB', | |
| municipality: 'Upland' | |
| }, | |
| { | |
| name: 'Buchanan Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CCR', | |
| municipality: 'Concord' | |
| }, | |
| { | |
| name: 'Northeast Iowa Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'CCY', | |
| municipality: 'Charles City' | |
| }, | |
| { | |
| name: 'Caledonia County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VT', | |
| iata_code: 'LLX', | |
| municipality: 'Lyndonville' | |
| }, | |
| { | |
| name: 'Cedar City Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'CDC', | |
| municipality: 'Cedar City' | |
| }, | |
| { | |
| name: 'Harrell Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'CDH', | |
| municipality: 'Camden' | |
| }, | |
| { | |
| name: 'Woodward Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'CDN', | |
| municipality: 'Camden' | |
| }, | |
| { | |
| name: 'Chadron Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'CDR', | |
| municipality: 'Chadron' | |
| }, | |
| { | |
| name: 'Childress Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CDS', | |
| municipality: 'Childress' | |
| }, | |
| { | |
| name: 'Essex County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'CDW', | |
| municipality: 'Caldwell' | |
| }, | |
| { | |
| name: 'Cessna Aircraft Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'CEA', | |
| municipality: 'Wichita' | |
| }, | |
| { | |
| name: 'Jack Mc Namara Field Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CEC', | |
| municipality: 'Crescent City' | |
| }, | |
| { | |
| name: 'Westover Metropolitan Airport / Westover Air Reserve Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'CEF', | |
| municipality: 'Chicopee' | |
| }, | |
| { | |
| name: 'Oconee County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'CEU', | |
| municipality: 'Clemson' | |
| }, | |
| { | |
| name: 'Mettel Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'CEV', | |
| municipality: 'Connersville' | |
| }, | |
| { | |
| name: 'Bob Sikes Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'CEW', | |
| municipality: 'Crestview' | |
| }, | |
| { | |
| name: 'Murray-Calloway County Airport Kyle-Oakley Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'CEY', | |
| municipality: 'Murray' | |
| }, | |
| { | |
| name: 'Cortez Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'CEZ', | |
| municipality: 'Cortez' | |
| }, | |
| { | |
| name: 'Coulter Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CFD', | |
| municipality: 'Bryan' | |
| }, | |
| { | |
| name: 'Tuscola Area Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'TZC', | |
| municipality: 'Caro' | |
| }, | |
| { | |
| name: 'Greenlee County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'CFT', | |
| municipality: 'Clifton' | |
| }, | |
| { | |
| name: 'Coffeyville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'CFV', | |
| municipality: 'Coffeyville' | |
| }, | |
| { | |
| name: 'Cambridge Dorchester Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'CGE', | |
| municipality: 'Cambridge' | |
| }, | |
| { | |
| name: 'Cuyahoga County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'CGF', | |
| municipality: 'Cleveland' | |
| }, | |
| { | |
| name: 'Cape Girardeau Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'CGI', | |
| municipality: 'Cape Girardeau' | |
| }, | |
| { | |
| name: 'College Park Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'CGS', | |
| municipality: 'College Park' | |
| }, | |
| { | |
| name: 'Casa Grande Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'CGZ', | |
| municipality: 'Casa Grande' | |
| }, | |
| { | |
| name: 'Chattanooga Metropolitan Airport (Lovell Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'CHA', | |
| municipality: 'Chattanooga' | |
| }, | |
| { | |
| name: 'Chickasha Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'CHK', | |
| municipality: 'Chickasha' | |
| }, | |
| { | |
| name: 'Charlottesville Albemarle Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'CHO', | |
| municipality: 'Charlottesville' | |
| }, | |
| { | |
| name: 'Charleston International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'CHS', | |
| municipality: 'Charleston' | |
| }, | |
| { | |
| name: 'Chico Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CIC', | |
| municipality: 'Chico' | |
| }, | |
| { | |
| name: 'The Eastern Iowa Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'CID', | |
| municipality: 'Cedar Rapids' | |
| }, | |
| { | |
| name: 'Arthur N Neu Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'CIN', | |
| municipality: 'Carroll' | |
| }, | |
| { | |
| name: 'Cairo Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'CIR', | |
| municipality: 'Cairo' | |
| }, | |
| { | |
| name: 'Chippewa County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'CIU', | |
| municipality: 'Kincheloe' | |
| }, | |
| { | |
| name: 'Kegelman AF Aux Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'CKA', | |
| municipality: 'Cherokee' | |
| }, | |
| { | |
| name: 'North Central West Virginia Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'CKB', | |
| municipality: 'Bridgeport' | |
| }, | |
| { | |
| name: 'Grand Marais Cook County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'GRM', | |
| municipality: 'Grand Marais' | |
| }, | |
| { | |
| name: 'Fletcher Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'CKM', | |
| municipality: 'Clarksdale' | |
| }, | |
| { | |
| name: 'Crookston Municipal Kirkwood Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'CKN', | |
| municipality: 'Crookston' | |
| }, | |
| { | |
| name: 'Clarksville\u2013Montgomery County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'CKV', | |
| municipality: 'Clarksville' | |
| }, | |
| { | |
| name: 'Chignik Lagoon Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KCL', | |
| municipality: 'Chignik Flats' | |
| }, | |
| { | |
| name: 'Cleveland Hopkins International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'CLE', | |
| municipality: 'Cleveland' | |
| }, | |
| { | |
| name: 'Clintonville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'CLI', | |
| municipality: 'Clintonville' | |
| }, | |
| { | |
| name: 'Clinton Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'CLK', | |
| municipality: 'Clinton' | |
| }, | |
| { | |
| name: 'Easterwood Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CLL', | |
| municipality: 'College Station' | |
| }, | |
| { | |
| name: 'William R Fairchild International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'CLM', | |
| municipality: 'Port Angeles' | |
| }, | |
| { | |
| name: 'Cliff Hatfield Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CLR', | |
| municipality: 'Calipatria' | |
| }, | |
| { | |
| name: 'Chehalis Centralia Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'CLS', | |
| municipality: 'Chehalis' | |
| }, | |
| { | |
| name: 'Charlotte Douglas International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'CLT', | |
| municipality: 'Charlotte' | |
| }, | |
| { | |
| name: 'Clearwater Air Park', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'CLW', | |
| municipality: 'Clearwater' | |
| }, | |
| { | |
| name: 'John Glenn Columbus International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'CMH', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'University of Illinois Willard Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'CMI', | |
| municipality: 'Savoy' | |
| }, | |
| { | |
| name: 'Houghton County Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'CMX', | |
| municipality: 'Hancock' | |
| }, | |
| { | |
| name: 'Sparta Fort McCoy Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'CMY', | |
| municipality: 'Sparta' | |
| }, | |
| { | |
| name: 'Chernofski Harbor Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KCN', | |
| municipality: 'Chernofski Harbor' | |
| }, | |
| { | |
| name: 'Claremont Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'CNH', | |
| municipality: 'Claremont' | |
| }, | |
| { | |
| name: 'Blosser Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'CNK', | |
| municipality: 'Concordia' | |
| }, | |
| { | |
| name: 'Cavern City Air Terminal', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'CNM', | |
| municipality: 'Carlsbad' | |
| }, | |
| { | |
| name: 'Chino Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CNO', | |
| municipality: 'Chino' | |
| }, | |
| { | |
| name: 'Chanute Martin Johnson Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'CNU', | |
| municipality: 'Chanute' | |
| }, | |
| { | |
| name: 'TSTC Waco Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CNW', | |
| municipality: 'Waco' | |
| }, | |
| { | |
| name: 'Canyonlands Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'CNY', | |
| municipality: 'Moab' | |
| }, | |
| { | |
| name: 'Yellowstone Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'COD', | |
| municipality: 'Cody' | |
| }, | |
| { | |
| name: "Coeur D'Alene Airport - Pappy Boyington Field", | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'COE', | |
| municipality: "Coeur d'Alene" | |
| }, | |
| { | |
| name: 'Patrick Space Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'COF', | |
| municipality: 'Cocoa Beach' | |
| }, | |
| { | |
| name: 'Merritt Island Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'COI', | |
| municipality: 'Merritt Island' | |
| }, | |
| { | |
| name: 'Coleman Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'COM', | |
| municipality: 'Coleman' | |
| }, | |
| { | |
| name: 'Concord Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'CON', | |
| municipality: 'Concord' | |
| }, | |
| { | |
| name: 'City of Colorado Springs Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'COS', | |
| municipality: 'Colorado Springs' | |
| }, | |
| { | |
| name: 'Cotulla-La Salle County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'COT', | |
| municipality: 'Cotulla' | |
| }, | |
| { | |
| name: 'Columbia Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'COU', | |
| municipality: 'Columbia' | |
| }, | |
| { | |
| name: 'Compton Woodley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CPM', | |
| municipality: 'Compton' | |
| }, | |
| { | |
| name: 'Casper-Natrona County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'CPR', | |
| municipality: 'Casper' | |
| }, | |
| { | |
| name: 'St Louis Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'CPS', | |
| municipality: 'Cahokia/St Louis' | |
| }, | |
| { | |
| name: 'Cheraw Municipal Airport/Lynch Bellinger Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'HCW', | |
| municipality: 'Cheraw' | |
| }, | |
| { | |
| name: 'Colorado Creek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KCR', | |
| municipality: 'Colorado Creek' | |
| }, | |
| { | |
| name: 'Grand Strand Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'CRE', | |
| municipality: 'North Myrtle Beach' | |
| }, | |
| { | |
| name: 'Jacksonville Executive at Craig Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'CRG', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'Corcoran Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CRO', | |
| municipality: 'Corcoran' | |
| }, | |
| { | |
| name: 'Corpus Christi International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CRP', | |
| municipality: 'Corpus Christi' | |
| }, | |
| { | |
| name: 'McClellan-Palomar Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CLD', | |
| municipality: 'Carlsbad' | |
| }, | |
| { | |
| name: 'C David Campbell Field Corsicana Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CRS', | |
| municipality: 'Corsicana' | |
| }, | |
| { | |
| name: 'Z M Jack Stell Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'CRT', | |
| municipality: 'Crossett' | |
| }, | |
| { | |
| name: 'Yeager Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'CRW', | |
| municipality: 'Charleston' | |
| }, | |
| { | |
| name: 'Roscoe Turner Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'CRX', | |
| municipality: 'Corinth' | |
| }, | |
| { | |
| name: 'Columbus Metropolitan Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'CSG', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'Clinton Sherman Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'CSM', | |
| municipality: 'Clinton' | |
| }, | |
| { | |
| name: 'Creston Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'CSQ', | |
| municipality: 'Creston' | |
| }, | |
| { | |
| name: 'Crossville Memorial Airport Whitson Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'CSV', | |
| municipality: 'Crossville' | |
| }, | |
| { | |
| name: 'Cut Bank International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'CTB', | |
| municipality: 'Cut Bank' | |
| }, | |
| { | |
| name: 'Cross City Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'CTY', | |
| municipality: 'Cross City' | |
| }, | |
| { | |
| name: 'Sampson County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'CTZ', | |
| municipality: 'Clinton' | |
| }, | |
| { | |
| name: 'Jim Hamilton L.B. Owens Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'CUB', | |
| municipality: 'Columbia' | |
| }, | |
| { | |
| name: 'Cushing Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'CUH', | |
| municipality: 'Cushing' | |
| }, | |
| { | |
| name: 'Cincinnati Northern Kentucky International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'CVG', | |
| municipality: 'Cincinnati / Covington' | |
| }, | |
| { | |
| name: 'Sharp County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'CKK', | |
| municipality: 'Ash Flat' | |
| }, | |
| { | |
| name: 'Clovis Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'CVN', | |
| municipality: 'Clovis' | |
| }, | |
| { | |
| name: 'Corvallis Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'CVO', | |
| municipality: 'Corvallis' | |
| }, | |
| { | |
| name: 'Cannon Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'CVS', | |
| municipality: 'Clovis' | |
| }, | |
| { | |
| name: 'Central Wisconsin Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'CWA', | |
| municipality: 'Mosinee' | |
| }, | |
| { | |
| name: 'Kickapoo Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'KIP', | |
| municipality: 'Wichita Falls' | |
| }, | |
| { | |
| name: 'Chennault International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'CWF', | |
| municipality: 'Lake Charles' | |
| }, | |
| { | |
| name: 'Clinton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'CWI', | |
| municipality: 'Clinton' | |
| }, | |
| { | |
| name: 'Calexico International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'CXL', | |
| municipality: 'Calexico' | |
| }, | |
| { | |
| name: 'Conroe-North Houston Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CXO', | |
| municipality: 'Houston' | |
| }, | |
| { | |
| name: 'Carson Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'CSN', | |
| municipality: 'Carson City' | |
| }, | |
| { | |
| name: 'Capital City Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'HAR', | |
| municipality: 'Harrisburg' | |
| }, | |
| { | |
| name: 'Cheyenne Regional Jerry Olson Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'CYS', | |
| municipality: 'Cheyenne' | |
| }, | |
| { | |
| name: 'Dimmit County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CZT', | |
| municipality: 'Carrizo Springs' | |
| }, | |
| { | |
| name: 'Tioga Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'VEX', | |
| municipality: 'Tioga' | |
| }, | |
| { | |
| name: 'Davison Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'DAA', | |
| municipality: 'Fort Belvoir' | |
| }, | |
| { | |
| name: 'Daytona Beach International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'DAB', | |
| municipality: 'Daytona Beach' | |
| }, | |
| { | |
| name: 'Barstow Daggett Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'DAG', | |
| municipality: 'Daggett' | |
| }, | |
| { | |
| name: 'Dallas Love Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'DAL', | |
| municipality: 'Dallas' | |
| }, | |
| { | |
| name: 'Danville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'DAN', | |
| municipality: 'Danville' | |
| }, | |
| { | |
| name: 'James M Cox Dayton International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'DAY', | |
| municipality: 'Dayton' | |
| }, | |
| { | |
| name: "W H 'Bud' Barron Airport", | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'DBN', | |
| municipality: 'Dublin' | |
| }, | |
| { | |
| name: 'Dubuque Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'DBQ', | |
| municipality: 'Dubuque' | |
| }, | |
| { | |
| name: 'Ronald Reagan Washington National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-DC', | |
| iata_code: 'DCA', | |
| municipality: 'Washington' | |
| }, | |
| { | |
| name: 'Pryor Field Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'DCU', | |
| municipality: 'Decatur' | |
| }, | |
| { | |
| name: 'Dodge City Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'DDC', | |
| municipality: 'Dodge City' | |
| }, | |
| { | |
| name: 'Decatur Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'DEC', | |
| municipality: 'Decatur' | |
| }, | |
| { | |
| name: 'Decorah Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'DEH', | |
| municipality: 'Decorah' | |
| }, | |
| { | |
| name: 'Denver International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'DEN', | |
| municipality: 'Denver' | |
| }, | |
| { | |
| name: 'Coleman A. Young Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'DET', | |
| municipality: 'Detroit' | |
| }, | |
| { | |
| name: 'Defiance Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'DFI', | |
| municipality: 'Defiance' | |
| }, | |
| { | |
| name: 'Dallas Fort Worth International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'DFW', | |
| municipality: 'Dallas-Fort Worth' | |
| }, | |
| { | |
| name: 'Douglas Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'DGL', | |
| municipality: 'Douglas' | |
| }, | |
| { | |
| name: 'Converse County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'DGW', | |
| municipality: 'Douglas' | |
| }, | |
| { | |
| name: 'Dothan Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'DHN', | |
| municipality: 'Dothan' | |
| }, | |
| { | |
| name: 'Dalhart Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'DHT', | |
| municipality: 'Dalhart' | |
| }, | |
| { | |
| name: 'Dickinson Theodore Roosevelt Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'DIK', | |
| municipality: 'Dickinson' | |
| }, | |
| { | |
| name: 'Chautauqua County-Dunkirk Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'DKK', | |
| municipality: 'Dunkirk' | |
| }, | |
| { | |
| name: 'Dillon County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'DLL', | |
| municipality: 'Dillon' | |
| }, | |
| { | |
| name: 'Laughlin Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'DLF', | |
| municipality: 'Del Rio' | |
| }, | |
| { | |
| name: 'Duluth International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'DLH', | |
| municipality: 'Duluth' | |
| }, | |
| { | |
| name: 'Dillon Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'DLN', | |
| municipality: 'Dillon' | |
| }, | |
| { | |
| name: 'Columbia Gorge Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'DLS', | |
| municipality: 'Dallesport / The Dalles' | |
| }, | |
| { | |
| name: 'Davis Monthan Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'DMA', | |
| municipality: 'Tucson' | |
| }, | |
| { | |
| name: 'Deming Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'DMN', | |
| municipality: 'Deming' | |
| }, | |
| { | |
| name: 'Sedalia Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'DMO', | |
| municipality: 'Sedalia' | |
| }, | |
| { | |
| name: 'Daniel Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'DNL', | |
| municipality: 'Augusta' | |
| }, | |
| { | |
| name: 'Dalton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'DNN', | |
| municipality: 'Dalton' | |
| }, | |
| { | |
| name: 'Denison Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'DNS', | |
| municipality: 'Denison' | |
| }, | |
| { | |
| name: 'Vermilion Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'DNV', | |
| municipality: 'Danville' | |
| }, | |
| { | |
| name: 'Dover Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-DE', | |
| iata_code: 'DOV', | |
| municipality: 'Dover' | |
| }, | |
| { | |
| name: 'Kandep Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-EPW', | |
| iata_code: 'KDP', | |
| municipality: 'Kandep' | |
| }, | |
| { | |
| name: 'Dupage Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'DPA', | |
| municipality: 'Chicago/West Chicago' | |
| }, | |
| { | |
| name: 'Michael AAF (Dugway Proving Ground) Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'DPG', | |
| municipality: 'Dugway Proving Ground' | |
| }, | |
| { | |
| name: 'Kamberatoro Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'KDQ', | |
| municipality: 'Kamberatoro Mission' | |
| }, | |
| { | |
| name: 'Desert Rock Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'DRA', | |
| municipality: 'Mercury' | |
| }, | |
| { | |
| name: 'Beauregard Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'DRI', | |
| municipality: 'DeRidder' | |
| }, | |
| { | |
| name: 'Drummond Island Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'DRE', | |
| municipality: 'Drummond Island' | |
| }, | |
| { | |
| name: 'Durango La Plata County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'DRO', | |
| municipality: 'Durango' | |
| }, | |
| { | |
| name: 'Del Rio International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'DRT', | |
| municipality: 'Del Rio' | |
| }, | |
| { | |
| name: 'Kamaran Downs Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-QLD', | |
| iata_code: 'KDS', | |
| municipality: 'Kamaran Downs' | |
| }, | |
| { | |
| name: 'Des Moines International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'DSM', | |
| municipality: 'Des Moines' | |
| }, | |
| { | |
| name: 'Dansville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'DSV', | |
| municipality: 'Dansville' | |
| }, | |
| { | |
| name: 'Delta Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'DTA', | |
| municipality: 'Delta' | |
| }, | |
| { | |
| name: 'Detroit Lakes Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'DTL', | |
| municipality: 'Detroit Lakes' | |
| }, | |
| { | |
| name: 'Shreveport Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'DTN', | |
| municipality: 'Shreveport' | |
| }, | |
| { | |
| name: 'Destin Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'DSI', | |
| municipality: 'Destin' | |
| }, | |
| { | |
| name: 'Detroit Metropolitan Wayne County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'DTW', | |
| municipality: 'Detroit' | |
| }, | |
| { | |
| name: 'Durant Regional Airport - Eaker Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'DUA', | |
| municipality: 'Durant' | |
| }, | |
| { | |
| name: 'Halliburton Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'DUC', | |
| municipality: 'Duncan' | |
| }, | |
| { | |
| name: 'Bisbee Douglas International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'DUG', | |
| municipality: 'Douglas Bisbee' | |
| }, | |
| { | |
| name: 'DuBois Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'DUJ', | |
| municipality: 'Dubois' | |
| }, | |
| { | |
| name: 'Devils Lake Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'DVL', | |
| municipality: 'Devils Lake' | |
| }, | |
| { | |
| name: 'Davenport Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'DVN', | |
| municipality: 'Davenport' | |
| }, | |
| { | |
| name: 'Marin County Airport - Gnoss Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NOT', | |
| municipality: 'Novato' | |
| }, | |
| { | |
| name: 'Slayton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'NSL', | |
| municipality: 'Slayton' | |
| }, | |
| { | |
| name: 'Phoenix Deer Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'DVT', | |
| municipality: 'Phoenix' | |
| }, | |
| { | |
| name: 'Victoria Reservoir Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-2', | |
| iata_code: 'KDW', | |
| municipality: 'Kandy' | |
| }, | |
| { | |
| name: 'David Wayne Hooks Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'DWH', | |
| municipality: 'Houston' | |
| }, | |
| { | |
| name: 'Danbury Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CT', | |
| iata_code: 'DXR', | |
| municipality: 'Danbury' | |
| }, | |
| { | |
| name: 'Doylestown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'DYL', | |
| municipality: 'Doylestown' | |
| }, | |
| { | |
| name: 'Dyess Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'DYS', | |
| municipality: 'Abilene' | |
| }, | |
| { | |
| name: 'Polgolla Reservoir Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-2', | |
| iata_code: 'KDZ', | |
| municipality: 'Kandy' | |
| }, | |
| { | |
| name: 'Lake Baringo (Kampi Ya Samaki) Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'LBN', | |
| municipality: 'Lake Baringo' | |
| }, | |
| { | |
| name: 'Vipingo Estate Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'VPG', | |
| municipality: 'Vipingo Estate' | |
| }, | |
| { | |
| name: 'Kichwa Tembo Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'KTJ', | |
| municipality: 'Kichwa Tembo' | |
| }, | |
| { | |
| name: 'Ol Seki Airstrip', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'OSJ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Olare Orok Airfield', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'OLG', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Mara North Conservancy Airstrip', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'HKR', | |
| municipality: 'Mara' | |
| }, | |
| { | |
| name: 'Angama Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'ANA', | |
| municipality: 'Maasai Mara' | |
| }, | |
| { | |
| name: 'Musiara Airstrip', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'MDR', | |
| municipality: 'Musiara' | |
| }, | |
| { | |
| name: 'Olkiombo Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'OLX', | |
| municipality: 'Olkiombo' | |
| }, | |
| { | |
| name: 'Kerio Valley Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'KRV', | |
| municipality: 'Kimwarer' | |
| }, | |
| { | |
| name: 'Kiunga Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'KIU', | |
| municipality: 'Kiunga' | |
| }, | |
| { | |
| name: 'Liboi Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-500', | |
| iata_code: 'LBK', | |
| municipality: 'Liboi' | |
| }, | |
| { | |
| name: 'Lake Rudolf Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-700', | |
| iata_code: 'LKU', | |
| municipality: 'Kalokol' | |
| }, | |
| { | |
| name: 'Mumias Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-900', | |
| iata_code: 'MUM', | |
| municipality: 'Mumias' | |
| }, | |
| { | |
| name: 'Roy Hurd Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MIF', | |
| municipality: 'Monahans' | |
| }, | |
| { | |
| name: 'Crane County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'CCG', | |
| municipality: 'Crane' | |
| }, | |
| { | |
| name: 'Ohkay Owingeh Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'ESO', | |
| municipality: 'Espanola' | |
| }, | |
| { | |
| name: 'Whiteriver Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'WTR', | |
| municipality: 'Whiteriver' | |
| }, | |
| { | |
| name: 'Alpine Casparis Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ALE', | |
| municipality: 'Alpine' | |
| }, | |
| { | |
| name: 'Bagdad Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'BGT', | |
| municipality: 'Bagdad' | |
| }, | |
| { | |
| name: 'Phifer Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'EAN', | |
| municipality: 'Wheatland' | |
| }, | |
| { | |
| name: 'Kearney Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'EAR', | |
| municipality: 'Kearney' | |
| }, | |
| { | |
| name: 'Pangborn Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'EAT', | |
| municipality: 'Wenatchee' | |
| }, | |
| { | |
| name: 'Chippewa Valley Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'EAU', | |
| municipality: 'Eau Claire' | |
| }, | |
| { | |
| name: 'Nanwalek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KEB', | |
| municipality: 'Nanwalek' | |
| }, | |
| { | |
| name: 'Webster City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'EBS', | |
| municipality: 'Webster City' | |
| }, | |
| { | |
| name: 'Elizabeth City Regional Airport & Coast Guard Air Station', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'ECG', | |
| municipality: 'Elizabeth City' | |
| }, | |
| { | |
| name: 'Northwest Florida Beaches International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'ECP', | |
| municipality: 'Panama City Beach' | |
| }, | |
| { | |
| name: 'Mondell Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'ECS', | |
| municipality: 'Newcastle' | |
| }, | |
| { | |
| name: 'Northeastern Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'EDE', | |
| municipality: 'Edenton' | |
| }, | |
| { | |
| name: 'Enterprise Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'ETS', | |
| municipality: 'Enterprise' | |
| }, | |
| { | |
| name: 'Edwards Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'EDW', | |
| municipality: 'Edwards' | |
| }, | |
| { | |
| name: 'Needles Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'EED', | |
| municipality: 'Needles' | |
| }, | |
| { | |
| name: 'Dillant Hopkins Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'EEN', | |
| municipality: 'Keene' | |
| }, | |
| { | |
| name: 'Ellington Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'EFD', | |
| municipality: 'Houston' | |
| }, | |
| { | |
| name: 'Northeast Kingdom International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VT', | |
| iata_code: 'EFK', | |
| municipality: 'Newport' | |
| }, | |
| { | |
| name: 'Jefferson Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'EFW', | |
| municipality: 'Jefferson' | |
| }, | |
| { | |
| name: 'Keglsugl Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPK', | |
| iata_code: 'KEG', | |
| municipality: 'Denglagu Mission' | |
| }, | |
| { | |
| name: 'Eagle County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'EGE', | |
| municipality: 'Eagle' | |
| }, | |
| { | |
| name: 'Duke Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'EGI', | |
| municipality: 'Crestview' | |
| }, | |
| { | |
| name: 'Eagle River Union Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'EGV', | |
| municipality: 'Eagle River' | |
| }, | |
| { | |
| name: 'Ekwok Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KEK', | |
| municipality: 'Ekwok' | |
| }, | |
| { | |
| name: 'Murray Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'EKA', | |
| municipality: 'Eureka' | |
| }, | |
| { | |
| name: 'Elkhart Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'EKI', | |
| municipality: 'Elkhart' | |
| }, | |
| { | |
| name: 'Elkins-Randolph County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'EKN', | |
| municipality: 'Elkins' | |
| }, | |
| { | |
| name: 'Elko Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'EKO', | |
| municipality: 'Elko' | |
| }, | |
| { | |
| name: 'Addington Field / Elizabethtown Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'EKX', | |
| municipality: 'Elizabethtown' | |
| }, | |
| { | |
| name: 'Eagle Lake Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ELA', | |
| municipality: 'Eagle Lake' | |
| }, | |
| { | |
| name: 'South Arkansas Regional Airport at Goodwin Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'ELD', | |
| municipality: 'El Dorado' | |
| }, | |
| { | |
| name: 'Elk City Regional Business Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'ELK', | |
| municipality: 'Elk City' | |
| }, | |
| { | |
| name: 'Elmira Corning Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'ELM', | |
| municipality: 'Elmira/Corning' | |
| }, | |
| { | |
| name: 'Bowers Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'ELN', | |
| municipality: 'Ellensburg' | |
| }, | |
| { | |
| name: 'Ely Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'LYU', | |
| municipality: 'Ely' | |
| }, | |
| { | |
| name: 'El Paso International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ELP', | |
| municipality: 'El Paso' | |
| }, | |
| { | |
| name: 'Ely Airport Yelland Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'ELY', | |
| municipality: 'Ely' | |
| }, | |
| { | |
| name: 'Wellsville Municipal Airport - Tarantine Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'ELZ', | |
| municipality: 'Wellsville' | |
| }, | |
| { | |
| name: 'Kemmerer Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'EMM', | |
| municipality: 'Kemmerer' | |
| }, | |
| { | |
| name: 'Emporia Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'EMP', | |
| municipality: 'Emporia' | |
| }, | |
| { | |
| name: 'San Gabriel Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'EMT', | |
| municipality: 'El Monte' | |
| }, | |
| { | |
| name: 'Vance Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'END', | |
| municipality: 'Enid' | |
| }, | |
| { | |
| name: 'Centralia Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'ENL', | |
| municipality: 'Centralia' | |
| }, | |
| { | |
| name: 'Wendover Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'ENV', | |
| municipality: 'Wendover' | |
| }, | |
| { | |
| name: 'Kenosha Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'ENW', | |
| municipality: 'Kenosha' | |
| }, | |
| { | |
| name: 'Keokuk Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'EOK', | |
| municipality: 'Keokuk' | |
| }, | |
| { | |
| name: 'Neosho Hugh Robinson Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'EOS', | |
| municipality: 'Neosho' | |
| }, | |
| { | |
| name: 'Ephrata Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'EPH', | |
| municipality: 'Ephrata' | |
| }, | |
| { | |
| name: 'Captain Jack Thomas El Dorado Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'EDK', | |
| municipality: 'El Dorado' | |
| }, | |
| { | |
| name: 'Erie International Tom Ridge Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'ERI', | |
| municipality: 'Erie' | |
| }, | |
| { | |
| name: 'Errol Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'ERR', | |
| municipality: 'Errol' | |
| }, | |
| { | |
| name: 'Kerrville / Kerr County Airport at Louis Schreiner Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ERV', | |
| municipality: 'Kerrville' | |
| }, | |
| { | |
| name: 'Delta County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'ESC', | |
| municipality: 'Escanaba' | |
| }, | |
| { | |
| name: 'Esler Army Airfield / Esler Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'ESF', | |
| municipality: 'Alexandria' | |
| }, | |
| { | |
| name: 'Easton Airport / Newnam Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'ESN', | |
| municipality: 'Easton' | |
| }, | |
| { | |
| name: 'Estherville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'EST', | |
| municipality: 'Estherville' | |
| }, | |
| { | |
| name: 'Easton State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'ESW', | |
| municipality: 'Easton' | |
| }, | |
| { | |
| name: 'West Bend Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'ETB', | |
| municipality: 'West Bend' | |
| }, | |
| { | |
| name: 'Eastland Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ETN', | |
| municipality: 'Eastland' | |
| }, | |
| { | |
| name: 'Weedon Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'EUF', | |
| municipality: 'Eufaula' | |
| }, | |
| { | |
| name: 'Mahlon Sweet Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'EUG', | |
| municipality: 'Eugene' | |
| }, | |
| { | |
| name: 'Eveleth\u2013Virginia Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'EVM', | |
| municipality: 'Eveleth' | |
| }, | |
| { | |
| name: 'Evansville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'EVV', | |
| municipality: 'Evansville' | |
| }, | |
| { | |
| name: 'Evanston-Uinta County Airport-Burns Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'EVW', | |
| municipality: 'Evanston' | |
| }, | |
| { | |
| name: 'New Bedford Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'EWB', | |
| municipality: 'New Bedford' | |
| }, | |
| { | |
| name: 'Newton City-County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'EWK', | |
| municipality: 'Newton' | |
| }, | |
| { | |
| name: 'Coastal Carolina Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'EWN', | |
| municipality: 'New Bern' | |
| }, | |
| { | |
| name: 'Newark Liberty International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'EWR', | |
| municipality: 'Newark' | |
| }, | |
| { | |
| name: 'Kanabea Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'KEX', | |
| municipality: 'Kanabea' | |
| }, | |
| { | |
| name: 'Key West International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'EYW', | |
| municipality: 'Key West' | |
| }, | |
| { | |
| name: 'Kelani-Peliyagoda Seaplane Base', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-1', | |
| iata_code: 'KEZ', | |
| municipality: 'Colombo' | |
| }, | |
| { | |
| name: 'Wilbarger County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'WIB', | |
| municipality: 'Vernon' | |
| }, | |
| { | |
| name: 'French Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RBK', | |
| municipality: 'Murrieta' | |
| }, | |
| { | |
| name: 'Felker Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'FAF', | |
| municipality: 'Newport News (Fort Eustis)' | |
| }, | |
| { | |
| name: 'Farmington Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'FAM', | |
| municipality: 'Farmington' | |
| }, | |
| { | |
| name: 'Hector International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'FAR', | |
| municipality: 'Fargo' | |
| }, | |
| { | |
| name: 'Fresno Yosemite International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'FAT', | |
| municipality: 'Fresno' | |
| }, | |
| { | |
| name: 'Fayetteville Regional Airport - Grannis Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'FAY', | |
| municipality: 'Fayetteville' | |
| }, | |
| { | |
| name: 'Simmons Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'FBG', | |
| municipality: 'Fort Bragg' | |
| }, | |
| { | |
| name: 'Faribault Municipal Airport-Liz Wall Strohfus Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'FBL', | |
| municipality: 'Faribault' | |
| }, | |
| { | |
| name: 'Fort Bridger Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'FBR', | |
| municipality: 'Fort Bridger' | |
| }, | |
| { | |
| name: 'Fairbury Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'FBY', | |
| municipality: 'Fairbury' | |
| }, | |
| { | |
| name: 'Fresno Chandler Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'FCH', | |
| municipality: 'Fresno' | |
| }, | |
| { | |
| name: 'Flying Cloud Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'FCM', | |
| municipality: 'Minneapolis' | |
| }, | |
| { | |
| name: 'Butts AAF (Fort Carson) Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'FCS', | |
| municipality: 'Fort Carson' | |
| }, | |
| { | |
| name: 'Forrest City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'FCY', | |
| municipality: 'Forrest City' | |
| }, | |
| { | |
| name: 'Frederick Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'FDK', | |
| municipality: 'Frederick' | |
| }, | |
| { | |
| name: 'Frederick Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'FDR', | |
| municipality: 'Frederick' | |
| }, | |
| { | |
| name: 'Findlay Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'FDY', | |
| municipality: 'Findlay' | |
| }, | |
| { | |
| name: 'Albertus Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'FEP', | |
| municipality: 'Freeport' | |
| }, | |
| { | |
| name: 'Fremont Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'FET', | |
| municipality: 'Fremont' | |
| }, | |
| { | |
| name: 'First Flight Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'FFA', | |
| municipality: 'Kill Devil Hills' | |
| }, | |
| { | |
| name: 'Fairfield Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'FFL', | |
| municipality: 'Fairfield' | |
| }, | |
| { | |
| name: 'Fergus Falls Municipal Airport - Einar Mickelson Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'FFM', | |
| municipality: 'Fergus Falls' | |
| }, | |
| { | |
| name: 'Wright-Patterson Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'FFO', | |
| municipality: 'Dayton' | |
| }, | |
| { | |
| name: 'Capital City Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'FFT', | |
| municipality: 'Frankfort' | |
| }, | |
| { | |
| name: 'Falcon Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'MSC', | |
| municipality: 'Mesa' | |
| }, | |
| { | |
| name: 'Friday Harbor Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'FRD', | |
| municipality: 'Friday Harbor' | |
| }, | |
| { | |
| name: 'Sierra Vista Municipal Airport / Libby Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'FHU', | |
| municipality: 'Fort Huachuca / Sierra Vista' | |
| }, | |
| { | |
| name: 'Venango Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'FKL', | |
| municipality: 'Franklin' | |
| }, | |
| { | |
| name: 'Franklin Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'FKN', | |
| municipality: 'Franklin' | |
| }, | |
| { | |
| name: 'Fond du Lac County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'FLD', | |
| municipality: 'Fond du Lac' | |
| }, | |
| { | |
| name: 'Flagstaff Pulliam International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'FLG', | |
| municipality: 'Flagstaff' | |
| }, | |
| { | |
| name: 'Fort Lauderdale Hollywood International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'FLL', | |
| municipality: 'Fort Lauderdale' | |
| }, | |
| { | |
| name: 'Florence Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'FLO', | |
| municipality: 'Florence' | |
| }, | |
| { | |
| name: 'Marion County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'FLP', | |
| municipality: 'Flippin' | |
| }, | |
| { | |
| name: 'Sherman Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'FLV', | |
| municipality: 'Fort Leavenworth' | |
| }, | |
| { | |
| name: 'Fallon Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'FLX', | |
| municipality: 'Fallon' | |
| }, | |
| { | |
| name: 'Tipton Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'FME', | |
| municipality: 'Fort Meade(Odenton)' | |
| }, | |
| { | |
| name: 'Cape Cod Coast Guard Air Station', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'FMH', | |
| municipality: 'Falmouth' | |
| }, | |
| { | |
| name: 'Four Corners Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'FMN', | |
| municipality: 'Farmington' | |
| }, | |
| { | |
| name: 'Page Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'FMY', | |
| municipality: 'Fort Myers' | |
| }, | |
| { | |
| name: 'Northern Colorado Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'FNL', | |
| municipality: 'Loveland' | |
| }, | |
| { | |
| name: 'Bishop International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'FNT', | |
| municipality: 'Flint' | |
| }, | |
| { | |
| name: 'Fort Dodge Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'FOD', | |
| municipality: 'Fort Dodge' | |
| }, | |
| { | |
| name: 'Topeka Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'FOE', | |
| municipality: 'Topeka' | |
| }, | |
| { | |
| name: 'Francis S Gabreski Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'FOK', | |
| municipality: 'Westhampton Beach' | |
| }, | |
| { | |
| name: 'Fillmore Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'FIL', | |
| municipality: 'Fillmore' | |
| }, | |
| { | |
| name: 'St Lucie County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'FPR', | |
| municipality: 'Fort Pierce' | |
| }, | |
| { | |
| name: 'Republic Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'FRG', | |
| municipality: 'Farmingdale' | |
| }, | |
| { | |
| name: 'French Lick Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'FRH', | |
| municipality: 'French Lick' | |
| }, | |
| { | |
| name: 'Marshall Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'FRI', | |
| municipality: 'Fort Riley (Junction City)' | |
| }, | |
| { | |
| name: 'Fairmont Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'FRM', | |
| municipality: 'Fairmont' | |
| }, | |
| { | |
| name: 'Front Royal Warren County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'FRR', | |
| municipality: 'Front Royal' | |
| }, | |
| { | |
| name: 'Sioux Falls Regional Airport / Joe Foss Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'FSD', | |
| municipality: 'Sioux Falls' | |
| }, | |
| { | |
| name: 'Henry Post Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'FSI', | |
| municipality: 'Fort Sill' | |
| }, | |
| { | |
| name: 'Fort Scott Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'FSK', | |
| municipality: 'Fort Scott' | |
| }, | |
| { | |
| name: 'Fort Smith Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'FSM', | |
| municipality: 'Fort Smith' | |
| }, | |
| { | |
| name: 'Fort Stockton Pecos County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'FST', | |
| municipality: 'Fort Stockton' | |
| }, | |
| { | |
| name: 'Fort Sumner Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'FSU', | |
| municipality: 'Fort Sumner' | |
| }, | |
| { | |
| name: 'Fort Madison Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'FMS', | |
| municipality: 'Fort Madison' | |
| }, | |
| { | |
| name: 'Godman Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'FTK', | |
| municipality: 'Fort Knox' | |
| }, | |
| { | |
| name: 'Fort Worth Meacham International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'FTW', | |
| municipality: 'Fort Worth' | |
| }, | |
| { | |
| name: 'Fulton County Airport Brown Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'FTY', | |
| municipality: 'Atlanta' | |
| }, | |
| { | |
| name: 'Fullerton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'FUL', | |
| municipality: 'Fullerton' | |
| }, | |
| { | |
| name: 'Northern Aroostook Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'WFK', | |
| municipality: 'Frenchville' | |
| }, | |
| { | |
| name: 'Fort Wayne International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'FWA', | |
| municipality: 'Fort Wayne' | |
| }, | |
| { | |
| name: 'Fort Lauderdale Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'FXE', | |
| municipality: 'Fort Lauderdale' | |
| }, | |
| { | |
| name: 'Forest City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'FXY', | |
| municipality: 'Forest City' | |
| }, | |
| { | |
| name: 'Fayetteville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'FYM', | |
| municipality: 'Fayetteville' | |
| }, | |
| { | |
| name: 'Drake Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'FYV', | |
| municipality: 'Fayetteville' | |
| }, | |
| { | |
| name: 'Northeast Alabama Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'GAD', | |
| municipality: 'Gadsden' | |
| }, | |
| { | |
| name: 'Gage Heibeck Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'GAG', | |
| municipality: 'Gage' | |
| }, | |
| { | |
| name: 'Montgomery County Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'GAI', | |
| municipality: 'Gaithersburg' | |
| }, | |
| { | |
| name: 'Great Bend Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'GBD', | |
| municipality: 'Great Bend' | |
| }, | |
| { | |
| name: 'Galesburg Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'GBG', | |
| municipality: 'Galesburg' | |
| }, | |
| { | |
| name: 'Walter J. Koladza Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'GBR', | |
| municipality: 'Great Barrington' | |
| }, | |
| { | |
| name: 'Northeast Wyoming Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'GCC', | |
| municipality: 'Gillette' | |
| }, | |
| { | |
| name: 'Grant County Regional Airport / Ogilvie Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'JDA', | |
| municipality: 'John Day' | |
| }, | |
| { | |
| name: 'Garden City Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'GCK', | |
| municipality: 'Garden City' | |
| }, | |
| { | |
| name: 'Grand Canyon National Park Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'GCN', | |
| municipality: 'Grand Canyon - Tusayan' | |
| }, | |
| { | |
| name: 'Greeneville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'GCY', | |
| municipality: 'Greeneville' | |
| }, | |
| { | |
| name: 'Gardner Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'GDM', | |
| municipality: 'Gardner' | |
| }, | |
| { | |
| name: 'Dawson Community Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'GDV', | |
| municipality: 'Glendive' | |
| }, | |
| { | |
| name: 'Gladwin Zettel Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'GDW', | |
| municipality: 'Gladwin' | |
| }, | |
| { | |
| name: 'Delaware Coastal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-DE', | |
| iata_code: 'GED', | |
| municipality: 'Georgetown' | |
| }, | |
| { | |
| name: 'Spokane International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'GEG', | |
| municipality: 'Spokane' | |
| }, | |
| { | |
| name: 'South Big Horn County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'GEY', | |
| municipality: 'Greybull' | |
| }, | |
| { | |
| name: 'Malmstrom Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'GFA', | |
| municipality: 'Great Falls' | |
| }, | |
| { | |
| name: 'Grand Forks International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'GFK', | |
| municipality: 'Grand Forks' | |
| }, | |
| { | |
| name: 'Floyd Bennett Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'GFL', | |
| municipality: 'Glens Falls' | |
| }, | |
| { | |
| name: 'Georgetown County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'GGE', | |
| municipality: 'Georgetown' | |
| }, | |
| { | |
| name: 'East Texas Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'GGG', | |
| municipality: 'Longview' | |
| }, | |
| { | |
| name: 'Glasgow Valley County Airport Wokal Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'GGW', | |
| municipality: 'Glasgow' | |
| }, | |
| { | |
| name: 'Centerville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'GHM', | |
| municipality: 'Centerville' | |
| }, | |
| { | |
| name: 'Winter Haven Regional Airport - Gilbert Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'GIF', | |
| municipality: 'Winter Haven' | |
| }, | |
| { | |
| name: 'Grand Junction Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'GJT', | |
| municipality: 'Grand Junction' | |
| }, | |
| { | |
| name: 'Port Meadville Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'MEJ', | |
| municipality: 'Meadville' | |
| }, | |
| { | |
| name: 'Gatlinburg-Pigeon Forge Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'GKT', | |
| municipality: 'Sevierville' | |
| }, | |
| { | |
| name: 'Goodland Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'GLD', | |
| municipality: 'Goodland' | |
| }, | |
| { | |
| name: 'Gainesville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'GLE', | |
| municipality: 'Gainesville' | |
| }, | |
| { | |
| name: 'Mid Delta Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'GLH', | |
| municipality: 'Greenville' | |
| }, | |
| { | |
| name: 'Gaylord Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'GLR', | |
| municipality: 'Gaylord' | |
| }, | |
| { | |
| name: 'Scholes International At Galveston Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'GLS', | |
| municipality: 'Galveston' | |
| }, | |
| { | |
| name: 'Glasgow Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'GLW', | |
| municipality: 'Glasgow' | |
| }, | |
| { | |
| name: 'Greenville Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'GMU', | |
| municipality: 'Greenville' | |
| }, | |
| { | |
| name: 'Gooding Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'GNG', | |
| municipality: 'Gooding' | |
| }, | |
| { | |
| name: 'Grants-Milan Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'GNT', | |
| municipality: 'Grants' | |
| }, | |
| { | |
| name: 'Gainesville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'GNV', | |
| municipality: 'Gainesville' | |
| }, | |
| { | |
| name: 'Guthrie-Edmond Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'GOK', | |
| municipality: 'Guthrie' | |
| }, | |
| { | |
| name: 'Groton New London Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CT', | |
| iata_code: 'GON', | |
| municipality: 'Groton' | |
| }, | |
| { | |
| name: 'Glacier Park International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'FCA', | |
| municipality: 'Kalispell' | |
| }, | |
| { | |
| name: 'Gulfport Biloxi International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'GPT', | |
| municipality: 'Gulfport' | |
| }, | |
| { | |
| name: 'Grand Rapids Itasca Co-Gordon Newstrom field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'GPZ', | |
| municipality: 'Grand Rapids' | |
| }, | |
| { | |
| name: 'Galion Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'GQQ', | |
| municipality: 'Galion' | |
| }, | |
| { | |
| name: 'Austin Straubel International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'GRB', | |
| municipality: 'Green Bay' | |
| }, | |
| { | |
| name: 'Greenwood County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'GRD', | |
| municipality: 'Greenwood' | |
| }, | |
| { | |
| name: 'Greenville Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'GRE', | |
| municipality: 'Greenville' | |
| }, | |
| { | |
| name: 'Gray Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'GRF', | |
| municipality: 'Fort Lewis/Tacoma' | |
| }, | |
| { | |
| name: 'Central Nebraska Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'GRI', | |
| municipality: 'Grand Island' | |
| }, | |
| { | |
| name: 'Killeen Regional Airport / Robert Gray Army Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'GRK', | |
| municipality: 'Fort Cavazos' | |
| }, | |
| { | |
| name: 'Gordon Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'GRN', | |
| municipality: 'Gordon' | |
| }, | |
| { | |
| name: 'Gerald R. Ford International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'GRR', | |
| municipality: 'Grand Rapids' | |
| }, | |
| { | |
| name: 'Seymour Johnson Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'GSB', | |
| municipality: 'Goldsboro' | |
| }, | |
| { | |
| name: 'Goshen Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'GSH', | |
| municipality: 'Goshen' | |
| }, | |
| { | |
| name: 'Piedmont Triad International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'GSO', | |
| municipality: 'Greensboro' | |
| }, | |
| { | |
| name: 'Greenville Spartanburg International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'GSP', | |
| municipality: 'Greer' | |
| }, | |
| { | |
| name: 'Great Falls International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'GTF', | |
| municipality: 'Great Falls' | |
| }, | |
| { | |
| name: 'Grantsburg Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'GTG', | |
| municipality: 'Grantsburg' | |
| }, | |
| { | |
| name: 'Golden Triangle Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'GTR', | |
| municipality: 'Columbus/W Point/Starkville' | |
| }, | |
| { | |
| name: 'Gunnison Crested Butte Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'GUC', | |
| municipality: 'Gunnison' | |
| }, | |
| { | |
| name: 'Gallup Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'GUP', | |
| municipality: 'Gallup' | |
| }, | |
| { | |
| name: 'Grissom Air Reserve Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'GUS', | |
| municipality: 'Peru' | |
| }, | |
| { | |
| name: 'Guymon Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'GUY', | |
| municipality: 'Guymon' | |
| }, | |
| { | |
| name: 'Lee Gilmer Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'GVL', | |
| municipality: 'Gainesville' | |
| }, | |
| { | |
| name: 'Majors Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'GVT', | |
| municipality: 'Greenville' | |
| }, | |
| { | |
| name: 'Kagi Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'KGW', | |
| municipality: 'Kagi' | |
| }, | |
| { | |
| name: 'Greenwood\u2013Leflore Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'GWO', | |
| municipality: 'Greenwood' | |
| }, | |
| { | |
| name: 'Glenwood Springs Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'GWS', | |
| municipality: 'Glenwood Springs' | |
| }, | |
| { | |
| name: 'Grayling Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KGX', | |
| municipality: 'Grayling' | |
| }, | |
| { | |
| name: 'Greeley\u2013Weld County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'GXY', | |
| municipality: 'Greeley' | |
| }, | |
| { | |
| name: 'Donaldson Field Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'GDC', | |
| municipality: 'Greenville' | |
| }, | |
| { | |
| name: 'North Texas Regional Airport Perrin Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'PNX', | |
| municipality: 'Denison' | |
| }, | |
| { | |
| name: 'Phoenix Goodyear Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'GYR', | |
| municipality: 'Goodyear' | |
| }, | |
| { | |
| name: 'Gary Chicago International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'GYY', | |
| municipality: 'Gary' | |
| }, | |
| { | |
| name: 'Glacier Creek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KGZ', | |
| municipality: 'Glacier Creek' | |
| }, | |
| { | |
| name: 'Dara Sakor International Airport', | |
| iso_country: 'KH', | |
| country_name: 'Cambodia', | |
| iso_region: 'KH-9', | |
| iata_code: 'DSY', | |
| municipality: 'Ta Noun' | |
| }, | |
| { | |
| name: 'Marion County Rankin Fite Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'HAB', | |
| municipality: 'Hamilton' | |
| }, | |
| { | |
| name: 'Half Moon Bay Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'HAF', | |
| municipality: 'Half Moon Bay' | |
| }, | |
| { | |
| name: 'Three Rivers Municipal Dr Haines Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'HAI', | |
| municipality: 'Three Rivers' | |
| }, | |
| { | |
| name: 'Butler Co Regional Airport - Hogan Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'HAO', | |
| municipality: 'Hamilton' | |
| }, | |
| { | |
| name: 'Hattiesburg Bobby L Chain Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'HBG', | |
| municipality: 'Hattiesburg' | |
| }, | |
| { | |
| name: 'Hobart Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'HBR', | |
| municipality: 'Hobart' | |
| }, | |
| { | |
| name: 'Brewster Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'HDE', | |
| municipality: 'Holdrege' | |
| }, | |
| { | |
| name: 'Yampa Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'HDN', | |
| municipality: 'Hayden' | |
| }, | |
| { | |
| name: 'Thompson-Robbins Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'HEE', | |
| municipality: 'West Helena' | |
| }, | |
| { | |
| name: 'Manassas Regional Airport/Harry P. Davis Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'MNZ', | |
| municipality: 'Manassas' | |
| }, | |
| { | |
| name: 'Natchez\u2013Adams County Airport / Hardy-Anders Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'HEZ', | |
| municipality: 'Natchez' | |
| }, | |
| { | |
| name: 'Hartford Brainard Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CT', | |
| iata_code: 'HFD', | |
| municipality: 'Hartford' | |
| }, | |
| { | |
| name: 'Mackall Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'HFF', | |
| municipality: 'Hoffman' | |
| }, | |
| { | |
| name: 'Hagerstown Regional Richard A Henson Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'HGR', | |
| municipality: 'Hagerstown' | |
| }, | |
| { | |
| name: 'Jack Northrop Field Hawthorne Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'HHR', | |
| municipality: 'Hawthorne' | |
| }, | |
| { | |
| name: 'Stan Stamper Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'HUJ', | |
| municipality: 'Hugo' | |
| }, | |
| { | |
| name: 'Range Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'HIB', | |
| municipality: 'Hibbing' | |
| }, | |
| { | |
| name: 'Mount Washington Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'HIE', | |
| municipality: 'Whitefield' | |
| }, | |
| { | |
| name: 'Hill Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'HIF', | |
| municipality: 'Ogden' | |
| }, | |
| { | |
| name: 'Lake Havasu City International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'HII', | |
| municipality: 'Lake Havasu City' | |
| }, | |
| { | |
| name: 'Portland Hillsboro Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'HIO', | |
| municipality: 'Portland' | |
| }, | |
| { | |
| name: 'Blytheville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'HKA', | |
| municipality: 'Blytheville' | |
| }, | |
| { | |
| name: 'Hawkins Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'HKS', | |
| municipality: 'Jackson' | |
| }, | |
| { | |
| name: 'Hickory Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'HKY', | |
| municipality: 'Hickory' | |
| }, | |
| { | |
| name: 'Hillenbrand Industries Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'HLB', | |
| municipality: 'Batesville' | |
| }, | |
| { | |
| name: 'Hill City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'HLC', | |
| municipality: 'Hill City' | |
| }, | |
| { | |
| name: 'Wheeling Ohio County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'HLG', | |
| municipality: 'Wheeling' | |
| }, | |
| { | |
| name: 'Park Township Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'HLM', | |
| municipality: 'Holland' | |
| }, | |
| { | |
| name: 'Helena Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'HLN', | |
| municipality: 'Helena' | |
| }, | |
| { | |
| name: 'Hood Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'HLR', | |
| municipality: 'Fort Cavazos (Killeen)' | |
| }, | |
| { | |
| name: 'Holloman Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'HMN', | |
| municipality: 'Alamogordo' | |
| }, | |
| { | |
| name: 'Hemet Ryan Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'HMT', | |
| municipality: 'Hemet' | |
| }, | |
| { | |
| name: 'Huntingburg Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'HNB', | |
| municipality: 'Huntingburg' | |
| }, | |
| { | |
| name: 'Henderson Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'HSH', | |
| municipality: 'Las Vegas' | |
| }, | |
| { | |
| name: 'Lea County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'HOB', | |
| municipality: 'Hobbs' | |
| }, | |
| { | |
| name: 'Huron Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'HON', | |
| municipality: 'Huron' | |
| }, | |
| { | |
| name: 'Campbell Army Airfield (Fort Campbell)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'HOP', | |
| municipality: 'Fort Campbell' | |
| }, | |
| { | |
| name: 'Memorial Field Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'HOT', | |
| municipality: 'Hot Springs' | |
| }, | |
| { | |
| name: 'William P Hobby Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'HOU', | |
| municipality: 'Houston' | |
| }, | |
| { | |
| name: 'Westchester County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'HPN', | |
| municipality: 'White Plains' | |
| }, | |
| { | |
| name: 'Hampton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'HPT', | |
| municipality: 'Hampton' | |
| }, | |
| { | |
| name: 'Baytown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'HPY', | |
| municipality: 'Baytown' | |
| }, | |
| { | |
| name: 'Bowerman Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'HQM', | |
| municipality: 'Hoquiam' | |
| }, | |
| { | |
| name: 'Hermiston Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'HES', | |
| municipality: 'Hermiston' | |
| }, | |
| { | |
| name: 'Valley International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'HRL', | |
| municipality: 'Harlingen' | |
| }, | |
| { | |
| name: 'Boone County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'HRO', | |
| municipality: 'Harrison' | |
| }, | |
| { | |
| name: 'Harrisburg-Raleigh Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'HSB', | |
| municipality: 'Harrisburg' | |
| }, | |
| { | |
| name: 'Billy Mitchell Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'HNC', | |
| municipality: 'Hatteras' | |
| }, | |
| { | |
| name: 'Hot Springs County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'THP', | |
| municipality: 'Thermopolis' | |
| }, | |
| { | |
| name: 'Hastings Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'HSI', | |
| municipality: 'Hastings' | |
| }, | |
| { | |
| name: 'Ingalls Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'HSP', | |
| municipality: 'Hot Springs' | |
| }, | |
| { | |
| name: 'Homestead ARB Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'HST', | |
| municipality: 'Homestead' | |
| }, | |
| { | |
| name: 'Huntsville International Carl T Jones Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'HSV', | |
| municipality: 'Huntsville' | |
| }, | |
| { | |
| name: 'Hawthorne Industrial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'HTH', | |
| municipality: 'Hawthorne' | |
| }, | |
| { | |
| name: 'Roscommon County - Blodgett Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'HTL', | |
| municipality: 'Houghton Lake' | |
| }, | |
| { | |
| name: 'Town of East Hampton Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'HTO', | |
| municipality: 'East Hampton' | |
| }, | |
| { | |
| name: 'Tri-State Airport / Milton J. Ferguson Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'HTS', | |
| municipality: 'Huntington' | |
| }, | |
| { | |
| name: 'Lawrence County Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'HTW', | |
| municipality: 'South Point' | |
| }, | |
| { | |
| name: 'Redstone Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'HUA', | |
| municipality: 'Redstone Arsnl Huntsville' | |
| }, | |
| { | |
| name: 'Terre Haute Regional Airport, Hulman Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'HUF', | |
| municipality: 'Terre Haute' | |
| }, | |
| { | |
| name: 'Houlton International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'HUL', | |
| municipality: 'Houlton' | |
| }, | |
| { | |
| name: 'Houma Terrebonne Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'HUM', | |
| municipality: 'Houma' | |
| }, | |
| { | |
| name: 'Hutchinson Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'HUT', | |
| municipality: 'Hutchinson' | |
| }, | |
| { | |
| name: 'Hanksville Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'HVE', | |
| municipality: 'Hanksville' | |
| }, | |
| { | |
| name: 'Tweed New Haven Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CT', | |
| iata_code: 'HVN', | |
| municipality: 'New Haven' | |
| }, | |
| { | |
| name: 'Havre City County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'HVR', | |
| municipality: 'Havre' | |
| }, | |
| { | |
| name: 'Hartsville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'HVS', | |
| municipality: 'Hartsville' | |
| }, | |
| { | |
| name: 'Hayward Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'HWD', | |
| municipality: 'Hayward' | |
| }, | |
| { | |
| name: 'North Perry Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'HWO', | |
| municipality: 'Hollywood' | |
| }, | |
| { | |
| name: 'Brookhaven Calabro Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'WSH', | |
| municipality: 'Shirley' | |
| }, | |
| { | |
| name: 'Hilton Head Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'HHH', | |
| municipality: 'Hilton Head Island' | |
| }, | |
| { | |
| name: 'Cape Cod Gateway Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'HYA', | |
| municipality: 'Hyannis' | |
| }, | |
| { | |
| name: 'Sawyer County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'HYR', | |
| municipality: 'Hayward' | |
| }, | |
| { | |
| name: 'Hays Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'HYS', | |
| municipality: 'Hays' | |
| }, | |
| { | |
| name: 'Hazleton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'HZL', | |
| municipality: 'Hazleton' | |
| }, | |
| { | |
| name: 'Northeast Ohio Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'JFN', | |
| municipality: 'Ashtabula' | |
| }, | |
| { | |
| name: 'McConnell Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'IAB', | |
| municipality: 'Wichita' | |
| }, | |
| { | |
| name: 'Washington Dulles International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'IAD', | |
| municipality: 'Dulles' | |
| }, | |
| { | |
| name: 'Niagara Falls International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'IAG', | |
| municipality: 'Niagara Falls' | |
| }, | |
| { | |
| name: 'George Bush Intercontinental Houston Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'IAH', | |
| municipality: 'Houston' | |
| }, | |
| { | |
| name: 'Ivanof Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KIB', | |
| municipality: 'Ivanof Bay' | |
| }, | |
| { | |
| name: 'Schenck Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'ICL', | |
| municipality: 'Clarinda' | |
| }, | |
| { | |
| name: 'Wichita Eisenhower National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'ICT', | |
| municipality: 'Wichita' | |
| }, | |
| { | |
| name: 'Idaho Falls Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'IDA', | |
| municipality: 'Idaho Falls' | |
| }, | |
| { | |
| name: 'Ida Grove Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'IDG', | |
| municipality: 'Ida Grove' | |
| }, | |
| { | |
| name: 'Indiana County\u2013Jimmy Stewart Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'IDI', | |
| municipality: 'Indiana' | |
| }, | |
| { | |
| name: 'Independence Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'IDP', | |
| municipality: 'Independence' | |
| }, | |
| { | |
| name: 'Pine Ridge Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'XPR', | |
| municipality: 'Pine Ridge' | |
| }, | |
| { | |
| name: 'Iowa Falls Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'IFA', | |
| municipality: 'Iowa Falls' | |
| }, | |
| { | |
| name: 'Laughlin Bullhead International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'IFP', | |
| municipality: 'Bullhead City' | |
| }, | |
| { | |
| name: 'Kingman Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'IGM', | |
| municipality: 'Kingman' | |
| }, | |
| { | |
| name: 'Jacksonville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'IJX', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'Greater Kankakee Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'IKK', | |
| municipality: 'Kankakee' | |
| }, | |
| { | |
| name: 'Kilwa Airport', | |
| iso_country: 'CD', | |
| country_name: 'Congo, The Democratic Republic of the', | |
| iso_region: 'CD-HK', | |
| iata_code: 'KIL', | |
| municipality: 'Kilwa' | |
| }, | |
| { | |
| name: 'Skylark Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ILE', | |
| municipality: 'Killeen' | |
| }, | |
| { | |
| name: 'Wilmington Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-DE', | |
| iata_code: 'ILG', | |
| municipality: 'Wilmington' | |
| }, | |
| { | |
| name: 'Wilmington International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'ILM', | |
| municipality: 'Wilmington' | |
| }, | |
| { | |
| name: 'Wilmington Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'ILN', | |
| municipality: 'Wilmington' | |
| }, | |
| { | |
| name: 'Imperial Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'IML', | |
| municipality: 'Imperial' | |
| }, | |
| { | |
| name: 'Immokalee Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'IMM', | |
| municipality: 'Immokalee' | |
| }, | |
| { | |
| name: 'Madison Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'MDN', | |
| municipality: 'Madison' | |
| }, | |
| { | |
| name: 'Ford Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'IMT', | |
| municipality: 'Kingsford' | |
| }, | |
| { | |
| name: 'Indianapolis International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'IND', | |
| municipality: 'Indianapolis' | |
| }, | |
| { | |
| name: 'Winkler County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'INK', | |
| municipality: 'Wink' | |
| }, | |
| { | |
| name: 'Falls International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'INL', | |
| municipality: 'International Falls' | |
| }, | |
| { | |
| name: 'Creech Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'INS', | |
| municipality: 'Indian Springs' | |
| }, | |
| { | |
| name: 'Smith Reynolds Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'INT', | |
| municipality: 'Winston Salem' | |
| }, | |
| { | |
| name: 'Winslow Lindbergh Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'INW', | |
| municipality: 'Winslow' | |
| }, | |
| { | |
| name: 'Iowa City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'IOW', | |
| municipality: 'Iowa City' | |
| }, | |
| { | |
| name: 'Imperial County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'IPL', | |
| municipality: 'Imperial' | |
| }, | |
| { | |
| name: 'Williamsport Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'IPT', | |
| municipality: 'Williamsport' | |
| }, | |
| { | |
| name: 'Kira Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NPP', | |
| iata_code: 'KIQ', | |
| municipality: 'Kira' | |
| }, | |
| { | |
| name: 'Kirksville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'IRK', | |
| municipality: 'Kirksville' | |
| }, | |
| { | |
| name: 'Kirsch Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'IRS', | |
| municipality: 'Sturgis' | |
| }, | |
| { | |
| name: 'Kissimmee Gateway Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'ISM', | |
| municipality: 'Orlando' | |
| }, | |
| { | |
| name: 'Kinston Regional Jetport At Stallings Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'ISO', | |
| municipality: 'Kinston' | |
| }, | |
| { | |
| name: 'Long Island Mac Arthur Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'ISP', | |
| municipality: 'Islip' | |
| }, | |
| { | |
| name: 'Schoolcraft County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'ISQ', | |
| municipality: 'Manistique' | |
| }, | |
| { | |
| name: 'Alexander Field South Wood County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'ISW', | |
| municipality: 'Wisconsin Rapids' | |
| }, | |
| { | |
| name: 'Ithaca Tompkins Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'ITH', | |
| municipality: 'Ithaca' | |
| }, | |
| { | |
| name: 'Phoenix\u2013Mesa Gateway Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'AZA', | |
| municipality: 'Mesa' | |
| }, | |
| { | |
| name: 'Gogebic Iron County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'IWD', | |
| municipality: 'Ironwood' | |
| }, | |
| { | |
| name: 'Wiscasset Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'ISS', | |
| municipality: 'Wiscasset' | |
| }, | |
| { | |
| name: 'West Houston Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'IWS', | |
| municipality: 'Houston' | |
| }, | |
| { | |
| name: 'New Century AirCenter Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'JCI', | |
| municipality: 'New Century' | |
| }, | |
| { | |
| name: 'Inyokern Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'IYK', | |
| municipality: 'Inyokern' | |
| }, | |
| { | |
| name: 'Santa Ynez Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SQA', | |
| municipality: 'Santa Ynez' | |
| }, | |
| { | |
| name: 'Eastern Slopes Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'FRY', | |
| municipality: 'Fryeburg' | |
| }, | |
| { | |
| name: 'Jackson Hole Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'JAC', | |
| municipality: 'Jackson' | |
| }, | |
| { | |
| name: 'Jackson-Medgar Wiley Evers International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'JAN', | |
| municipality: 'Jackson' | |
| }, | |
| { | |
| name: 'Jasper County Airport Bell Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'JAS', | |
| municipality: 'Jasper' | |
| }, | |
| { | |
| name: 'Jacksonville International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'JAX', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'Jonesboro Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'JBR', | |
| municipality: 'Jonesboro' | |
| }, | |
| { | |
| name: 'Kimble County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'JCT', | |
| municipality: 'Junction' | |
| }, | |
| { | |
| name: 'Jordan Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'JDN', | |
| municipality: 'Jordan' | |
| }, | |
| { | |
| name: 'Jefferson City Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'JEF', | |
| municipality: 'Jefferson City' | |
| }, | |
| { | |
| name: 'John F Kennedy International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'JFK', | |
| municipality: 'New York' | |
| }, | |
| { | |
| name: 'Chautauqua County-Jamestown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'JHW', | |
| municipality: 'Jamestown' | |
| }, | |
| { | |
| name: 'Jack Edwards National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'GUF', | |
| municipality: 'Gulf Shores' | |
| }, | |
| { | |
| name: 'Joplin Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'JLN', | |
| municipality: 'Joplin' | |
| }, | |
| { | |
| name: 'Jamestown Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'JMS', | |
| municipality: 'Jamestown' | |
| }, | |
| { | |
| name: 'Joliet Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'JOT', | |
| municipality: 'Joliet' | |
| }, | |
| { | |
| name: 'Concord-Padgett Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'USA', | |
| municipality: 'Concord' | |
| }, | |
| { | |
| name: 'Cherokee County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'JKV', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'John Murtha Johnstown Cambria County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'JST', | |
| municipality: 'Johnstown' | |
| }, | |
| { | |
| name: 'Southern Wisconsin Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'JVL', | |
| municipality: 'Janesville' | |
| }, | |
| { | |
| name: 'Kuala Batu Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-AC', | |
| iata_code: 'KJX', | |
| municipality: 'Blangpidie' | |
| }, | |
| { | |
| name: 'Jackson County Airport/Reynolds Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'JXN', | |
| municipality: 'Jackson' | |
| }, | |
| { | |
| name: 'Grand Glaize Osage Beach Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'OSB', | |
| municipality: 'Osage Beach' | |
| }, | |
| { | |
| name: 'Kitoi Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KKB', | |
| municipality: 'Kitoi Bay' | |
| }, | |
| { | |
| name: 'Mesa Del Rey Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'KIC', | |
| municipality: 'King City' | |
| }, | |
| { | |
| name: 'Karluk Lake Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KKL', | |
| municipality: 'Karluk Lake' | |
| }, | |
| { | |
| name: 'Southwest Washington Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'KLS', | |
| municipality: 'Kelso' | |
| }, | |
| { | |
| name: 'Kanab Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'KNB', | |
| municipality: 'Kanab' | |
| }, | |
| { | |
| name: 'Ekuk Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KKU', | |
| municipality: 'Ekuk' | |
| }, | |
| { | |
| name: 'Furnace Creek Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'DTH', | |
| municipality: 'Death Valley' | |
| }, | |
| { | |
| name: 'Borrego Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'BXS', | |
| municipality: 'Borrego Springs' | |
| }, | |
| { | |
| name: 'Big Bear City Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RBF', | |
| municipality: 'Big Bear' | |
| }, | |
| { | |
| name: 'Marble Canyon Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'MYH', | |
| municipality: 'Marble Canyon' | |
| }, | |
| { | |
| name: 'Trona Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'TRH', | |
| municipality: 'Trona' | |
| }, | |
| { | |
| name: 'Southeast Colorado Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'LAA', | |
| municipality: 'Lamar' | |
| }, | |
| { | |
| name: 'Purdue University Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'LAF', | |
| municipality: 'West Lafayette' | |
| }, | |
| { | |
| name: 'Lakeland Linder International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'LAL', | |
| municipality: 'Lakeland' | |
| }, | |
| { | |
| name: 'Los Alamos Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'LAM', | |
| municipality: 'Los Alamos' | |
| }, | |
| { | |
| name: 'Capital City Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'LAN', | |
| municipality: 'Lansing' | |
| }, | |
| { | |
| name: 'Laramie Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'LAR', | |
| municipality: 'Laramie' | |
| }, | |
| { | |
| name: 'Harry Reid International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'LAS', | |
| municipality: 'Las Vegas' | |
| }, | |
| { | |
| name: 'Lawton Fort Sill Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'LAW', | |
| municipality: 'Lawton' | |
| }, | |
| { | |
| name: 'Los Angeles International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'LAX', | |
| municipality: 'Los Angeles' | |
| }, | |
| { | |
| name: 'Lubbock Preston Smith International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'LBB', | |
| municipality: 'Lubbock' | |
| }, | |
| { | |
| name: 'Arnold Palmer Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'LBE', | |
| municipality: 'Latrobe' | |
| }, | |
| { | |
| name: 'North Platte Regional Airport Lee Bird Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'LBF', | |
| municipality: 'North Platte' | |
| }, | |
| { | |
| name: 'Liberal Mid-America Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'LBL', | |
| municipality: 'Liberal' | |
| }, | |
| { | |
| name: 'Lumberton Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'LBT', | |
| municipality: 'Lumberton' | |
| }, | |
| { | |
| name: 'Texas Gulf Coast Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'LJN', | |
| municipality: 'Angleton' | |
| }, | |
| { | |
| name: 'Lake Charles Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'LCH', | |
| municipality: 'Lake Charles' | |
| }, | |
| { | |
| name: 'Laconia Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'LCI', | |
| municipality: 'Laconia / Gilford' | |
| }, | |
| { | |
| name: 'Rickenbacker International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'LCK', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'Lake City Gateway Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'LCQ', | |
| municipality: 'Lake City' | |
| }, | |
| { | |
| name: 'Linden Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'LDJ', | |
| municipality: 'Linden' | |
| }, | |
| { | |
| name: 'Mason County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'LDM', | |
| municipality: 'Ludington' | |
| }, | |
| { | |
| name: 'Lebanon Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'LEB', | |
| municipality: 'Lebanon' | |
| }, | |
| { | |
| name: 'Leesburg International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'LEE', | |
| municipality: 'Leesburg' | |
| }, | |
| { | |
| name: 'Lemmon Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'LEM', | |
| municipality: 'Lemmon' | |
| }, | |
| { | |
| name: 'Auburn Lewiston Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'LEW', | |
| municipality: 'Auburn/Lewiston' | |
| }, | |
| { | |
| name: 'Blue Grass Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'LEX', | |
| municipality: 'Lexington' | |
| }, | |
| { | |
| name: 'Langley Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'LFI', | |
| municipality: 'Hampton' | |
| }, | |
| { | |
| name: 'Angelina County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'LFK', | |
| municipality: 'Lufkin' | |
| }, | |
| { | |
| name: 'Lafayette Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'LFT', | |
| municipality: 'Lafayette' | |
| }, | |
| { | |
| name: 'LaGuardia Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'LGA', | |
| municipality: 'New York' | |
| }, | |
| { | |
| name: 'Long Beach Airport (Daugherty Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'LGB', | |
| municipality: 'Long Beach' | |
| }, | |
| { | |
| name: 'LaGrange Callaway Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'LGC', | |
| municipality: 'LaGrange' | |
| }, | |
| { | |
| name: 'La Grande/Union County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'LGD', | |
| municipality: 'La Grande' | |
| }, | |
| { | |
| name: 'Laguna Army Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'LGF', | |
| municipality: 'Yuma Proving Ground(Yuma)' | |
| }, | |
| { | |
| name: 'Logan-Cache Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'LGU', | |
| municipality: 'Logan' | |
| }, | |
| { | |
| name: 'William T. Piper Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'LHV', | |
| municipality: 'Lock Haven' | |
| }, | |
| { | |
| name: 'MidCoast Regional Airport at Wright Army Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'LIY', | |
| municipality: 'Hinesville' | |
| }, | |
| { | |
| name: 'Triangle North Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'LFN', | |
| municipality: 'Louisburg' | |
| }, | |
| { | |
| name: 'Limon Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'LIC', | |
| municipality: 'Limon' | |
| }, | |
| { | |
| name: 'Bill & Hillary Clinton National Airport/Adams Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'LIT', | |
| municipality: 'Little Rock' | |
| }, | |
| { | |
| name: 'Lake Placid Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'LKP', | |
| municipality: 'Lake Placid' | |
| }, | |
| { | |
| name: 'Louisa County Airport / Freeman Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'LOW', | |
| municipality: 'Louisa' | |
| }, | |
| { | |
| name: 'Lake County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'LKV', | |
| municipality: 'Lakeview' | |
| }, | |
| { | |
| name: 'Challis Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'CHL', | |
| municipality: 'Challis' | |
| }, | |
| { | |
| name: 'Louisville Winston County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'LMS', | |
| municipality: 'Louisville' | |
| }, | |
| { | |
| name: 'Crater Lake-Klamath Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'LMT', | |
| municipality: 'Klamath Falls' | |
| }, | |
| { | |
| name: 'Palm Beach County Park Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'LNA', | |
| municipality: 'West Palm Beach' | |
| }, | |
| { | |
| name: 'Hunt Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'LND', | |
| municipality: 'Lander' | |
| }, | |
| { | |
| name: 'Lincoln Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'LNK', | |
| municipality: 'Lincoln' | |
| }, | |
| { | |
| name: 'Lake County Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'LNN', | |
| municipality: 'Willoughby' | |
| }, | |
| { | |
| name: 'Lonesome Pine Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'LNP', | |
| municipality: 'Wise' | |
| }, | |
| { | |
| name: 'Tri-County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'LNR', | |
| municipality: 'Spring Green' | |
| }, | |
| { | |
| name: 'Lancaster Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'LNS', | |
| municipality: 'Lancaster' | |
| }, | |
| { | |
| name: 'Derby Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'LOL', | |
| municipality: 'Lovelock' | |
| }, | |
| { | |
| name: 'Wings Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'BBX', | |
| municipality: 'Philadelphia' | |
| }, | |
| { | |
| name: 'Lewis University Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'LOT', | |
| municipality: 'Chicago/Romeoville' | |
| }, | |
| { | |
| name: 'Bowman Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'LOU', | |
| municipality: 'Louisville' | |
| }, | |
| { | |
| name: 'London-Corbin Airport/Magee Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'LOZ', | |
| municipality: 'London' | |
| }, | |
| { | |
| name: 'Lompoc Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'LPC', | |
| municipality: 'Lompoc' | |
| }, | |
| { | |
| name: 'Pickens County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'LQK', | |
| municipality: 'Pickens' | |
| }, | |
| { | |
| name: 'Laredo International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'LRD', | |
| municipality: 'Laredo' | |
| }, | |
| { | |
| name: 'Little Rock Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'LRF', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'Le Mars Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'LRJ', | |
| municipality: 'Le Mars' | |
| }, | |
| { | |
| name: 'Las Cruces International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'LRU', | |
| municipality: 'Las Cruces' | |
| }, | |
| { | |
| name: 'Lordsburg Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'LSB', | |
| municipality: 'Lordsburg' | |
| }, | |
| { | |
| name: 'La Crosse Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'LSE', | |
| municipality: 'La Crosse' | |
| }, | |
| { | |
| name: 'Lawson Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'LSF', | |
| municipality: 'Fort Benning' | |
| }, | |
| { | |
| name: 'Lusk Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'LSK', | |
| municipality: 'Lusk' | |
| }, | |
| { | |
| name: 'Los Banos Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'LSN', | |
| municipality: 'Los Banos' | |
| }, | |
| { | |
| name: 'Nellis Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'LSV', | |
| municipality: 'Las Vegas' | |
| }, | |
| { | |
| name: 'Altus Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'LTS', | |
| municipality: 'Altus' | |
| }, | |
| { | |
| name: 'Luke Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'LUF', | |
| municipality: 'Glendale' | |
| }, | |
| { | |
| name: 'Cincinnati Municipal Airport Lunken Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'LUK', | |
| municipality: 'Cincinnati' | |
| }, | |
| { | |
| name: 'Hesler Noble Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'LUL', | |
| municipality: 'Laurel' | |
| }, | |
| { | |
| name: 'Livermore Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'LVK', | |
| municipality: 'Livermore' | |
| }, | |
| { | |
| name: 'Brunswick Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'LVL', | |
| municipality: 'Lawrenceville' | |
| }, | |
| { | |
| name: 'Mission Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'LVM', | |
| municipality: 'Livingston' | |
| }, | |
| { | |
| name: 'Las Vegas Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'LVS', | |
| municipality: 'Las Vegas' | |
| }, | |
| { | |
| name: 'Greenbrier Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'LWB', | |
| municipality: 'Lewisburg' | |
| }, | |
| { | |
| name: 'Lawrence Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'LWC', | |
| municipality: 'Lawrence' | |
| }, | |
| { | |
| name: 'Wells Municipal Airport/Harriet Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'LWL', | |
| municipality: 'Wells' | |
| }, | |
| { | |
| name: 'Lawrence Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'LWM', | |
| municipality: 'Lawrence' | |
| }, | |
| { | |
| name: 'Lewiston Nez Perce County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'LWS', | |
| municipality: 'Lewiston' | |
| }, | |
| { | |
| name: 'Lewistown Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'LWT', | |
| municipality: 'Lewistown' | |
| }, | |
| { | |
| name: 'Lawrenceville Vincennes International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'LWV', | |
| municipality: 'Lawrenceville' | |
| }, | |
| { | |
| name: 'Jim Kelly Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'LXN', | |
| municipality: 'Lexington' | |
| }, | |
| { | |
| name: 'Lake County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'LXV', | |
| municipality: 'Leadville' | |
| }, | |
| { | |
| name: 'Lynchburg Regional Airport - Preston Glenn Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'LYH', | |
| municipality: 'Lynchburg' | |
| }, | |
| { | |
| name: 'Lyons-Rice County Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'LYO', | |
| municipality: 'Lyons' | |
| }, | |
| { | |
| name: 'Gwinnett County Briscoe Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'LZU', | |
| municipality: 'Lawrenceville' | |
| }, | |
| { | |
| name: 'Poplarville Pearl River County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'PCU', | |
| municipality: 'Poplarville' | |
| }, | |
| { | |
| name: 'Malta Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'MLK', | |
| municipality: 'Malta' | |
| }, | |
| { | |
| name: 'Macon Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'MAC', | |
| municipality: 'Macon' | |
| }, | |
| { | |
| name: 'Madera Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MAE', | |
| municipality: 'Madera' | |
| }, | |
| { | |
| name: 'Midland International Air and Space Port', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MAF', | |
| municipality: 'Midland' | |
| }, | |
| { | |
| name: 'Malden Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'MAW', | |
| municipality: 'Malden' | |
| }, | |
| { | |
| name: 'Koinambe Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-JI', | |
| iata_code: 'KMB', | |
| municipality: 'Konambe' | |
| }, | |
| { | |
| name: 'Mobridge Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'MBG', | |
| municipality: 'Mobridge' | |
| }, | |
| { | |
| name: 'Manistee County Blacker Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'MBL', | |
| municipality: 'Manistee' | |
| }, | |
| { | |
| name: 'Bruce Campbell Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'DXE', | |
| municipality: 'Madison' | |
| }, | |
| { | |
| name: 'MBS International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'MBS', | |
| municipality: 'Saginaw' | |
| }, | |
| { | |
| name: 'Omar N Bradley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'MBY', | |
| municipality: 'Moberly' | |
| }, | |
| { | |
| name: 'McComb-Pike County Airport / John E Lewis Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'MCB', | |
| municipality: 'McComb' | |
| }, | |
| { | |
| name: 'McClellan Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MCC', | |
| municipality: 'Sacramento' | |
| }, | |
| { | |
| name: 'Mackinac Island Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'MCD', | |
| municipality: 'Mackinac Island' | |
| }, | |
| { | |
| name: 'Merced Regional Macready Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MCE', | |
| municipality: 'Merced' | |
| }, | |
| { | |
| name: 'MacDill Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'MCF', | |
| municipality: 'Tampa' | |
| }, | |
| { | |
| name: 'Kansas City International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'MCI', | |
| municipality: 'Kansas City' | |
| }, | |
| { | |
| name: 'McCook Ben Nelson Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'MCK', | |
| municipality: 'McCook' | |
| }, | |
| { | |
| name: 'Middle Georgia Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'MCN', | |
| municipality: 'Macon' | |
| }, | |
| { | |
| name: 'Orlando International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'MCO', | |
| municipality: 'Orlando' | |
| }, | |
| { | |
| name: 'Mason City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'MCW', | |
| municipality: 'Mason City' | |
| }, | |
| { | |
| name: 'Martindale Army Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MDA', | |
| municipality: 'San Antonio' | |
| }, | |
| { | |
| name: 'Midland Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MDD', | |
| municipality: 'Midland' | |
| }, | |
| { | |
| name: 'Southern Illinois Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'MDH', | |
| municipality: 'Murphysboro' | |
| }, | |
| { | |
| name: 'Madison Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'XMD', | |
| municipality: 'Madison' | |
| }, | |
| { | |
| name: 'Harrisburg International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'MDT', | |
| municipality: 'Harrisburg' | |
| }, | |
| { | |
| name: 'Chicago Midway International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'MDW', | |
| municipality: 'Chicago' | |
| }, | |
| { | |
| name: 'Taylor County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'MDF', | |
| municipality: 'Medford' | |
| }, | |
| { | |
| name: 'Laurinburg Maxton Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'MXE', | |
| municipality: 'Maxton' | |
| }, | |
| { | |
| name: 'Key Field / Meridian Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'MEI', | |
| municipality: 'Meridian' | |
| }, | |
| { | |
| name: 'Memphis International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'MEM', | |
| municipality: 'Memphis' | |
| }, | |
| { | |
| name: 'Castle Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MER', | |
| municipality: 'Merced' | |
| }, | |
| { | |
| name: 'Minden-Tahoe Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'MEV', | |
| municipality: 'Minden' | |
| }, | |
| { | |
| name: 'Mena Intermountain Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'UMZ', | |
| municipality: 'Mena' | |
| }, | |
| { | |
| name: 'Kamina Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'KMF', | |
| municipality: 'Hoieti' | |
| }, | |
| { | |
| name: 'Mansfield Lahm Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'MFD', | |
| municipality: 'Mansfield' | |
| }, | |
| { | |
| name: 'McAllen Miller International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MFE', | |
| municipality: 'McAllen' | |
| }, | |
| { | |
| name: 'Marshfield Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'MFI', | |
| municipality: 'Marshfield' | |
| }, | |
| { | |
| name: 'Rogue Valley International Medford Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'MFR', | |
| municipality: 'Medford' | |
| }, | |
| { | |
| name: 'Accomack County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'MFV', | |
| municipality: 'Melfa' | |
| }, | |
| { | |
| name: 'Michigan City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'MGC', | |
| municipality: 'Michigan City' | |
| }, | |
| { | |
| name: 'Dobbins Air Reserve Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'MGE', | |
| municipality: 'Marietta' | |
| }, | |
| { | |
| name: 'Orange County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'MGJ', | |
| municipality: 'Montgomery' | |
| }, | |
| { | |
| name: 'Montgomery Regional (Dannelly Field) Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'MGM', | |
| municipality: 'Montgomery' | |
| }, | |
| { | |
| name: 'Moultrie Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'MGR', | |
| municipality: 'Moultrie' | |
| }, | |
| { | |
| name: 'Morgantown Municipal Airport Walter L. (Bill) Hart Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'MGW', | |
| municipality: 'Morgantown' | |
| }, | |
| { | |
| name: 'Dayton-Wright Brothers Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'MGY', | |
| municipality: 'Dayton' | |
| }, | |
| { | |
| name: 'Mitchell Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'MHE', | |
| municipality: 'Mitchell' | |
| }, | |
| { | |
| name: 'Manhattan Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'MHK', | |
| municipality: 'Manhattan' | |
| }, | |
| { | |
| name: 'Marshall Memorial Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'MHL', | |
| municipality: 'Marshall' | |
| }, | |
| { | |
| name: 'Sacramento Mather Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MHR', | |
| municipality: 'Sacramento' | |
| }, | |
| { | |
| name: 'Manchester-Boston Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'MHT', | |
| municipality: 'Manchester' | |
| }, | |
| { | |
| name: 'Mojave Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MHV', | |
| municipality: 'Mojave' | |
| }, | |
| { | |
| name: 'Miami International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'MIA', | |
| municipality: 'Miami' | |
| }, | |
| { | |
| name: 'Minot Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'MIB', | |
| municipality: 'Minot' | |
| }, | |
| { | |
| name: 'Crystal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'MIC', | |
| municipality: 'Minneapolis' | |
| }, | |
| { | |
| name: 'Delaware County Johnson Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'MIE', | |
| municipality: 'Muncie' | |
| }, | |
| { | |
| name: 'Miami Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'MIO', | |
| municipality: 'Miami' | |
| }, | |
| { | |
| name: 'Shafter Airport - Minter Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MIT', | |
| municipality: 'Shafter' | |
| }, | |
| { | |
| name: 'Millville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'MIV', | |
| municipality: 'Millville' | |
| }, | |
| { | |
| name: 'Marshalltown Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'MIW', | |
| municipality: 'Marshalltown' | |
| }, | |
| { | |
| name: 'Jackson Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'MJQ', | |
| municipality: 'Jackson' | |
| }, | |
| { | |
| name: 'Ocean County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'MJX', | |
| municipality: 'Toms River' | |
| }, | |
| { | |
| name: 'Miller Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'MKA', | |
| municipality: 'Miller' | |
| }, | |
| { | |
| name: 'Charles B. Wheeler Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'MKC', | |
| municipality: 'Kansas City' | |
| }, | |
| { | |
| name: 'General Mitchell International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'MKE', | |
| municipality: 'Milwaukee' | |
| }, | |
| { | |
| name: 'Muskegon County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'MKG', | |
| municipality: 'Muskegon' | |
| }, | |
| { | |
| name: 'McKellar-Sipes Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'MKL', | |
| municipality: 'Jackson' | |
| }, | |
| { | |
| name: 'Muskogee-Davis Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'MKO', | |
| municipality: 'Muskogee' | |
| }, | |
| { | |
| name: 'Mankato Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'MKT', | |
| municipality: 'Mankato' | |
| }, | |
| { | |
| name: 'Marco Island Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'MRK', | |
| municipality: 'Marco Island' | |
| }, | |
| { | |
| name: 'Melbourne Orlando International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'MLB', | |
| municipality: 'Melbourne' | |
| }, | |
| { | |
| name: 'Mc Alester Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'MLC', | |
| municipality: 'Mc Alester' | |
| }, | |
| { | |
| name: 'Malad City Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'MLD', | |
| municipality: 'Malad City' | |
| }, | |
| { | |
| name: 'Millard Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'MIQ', | |
| municipality: 'Omaha' | |
| }, | |
| { | |
| name: 'Milford Municipal-Ben and Judy Briscoe Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'MLF', | |
| municipality: 'Milford' | |
| }, | |
| { | |
| name: 'Quad City International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'MLI', | |
| municipality: 'Moline' | |
| }, | |
| { | |
| name: 'Baldwin County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'MLJ', | |
| municipality: 'Milledgeville' | |
| }, | |
| { | |
| name: 'Miles City Airport - Frank Wiley Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'MLS', | |
| municipality: 'Miles City' | |
| }, | |
| { | |
| name: 'Millinocket Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'MLT', | |
| municipality: 'Millinocket' | |
| }, | |
| { | |
| name: 'Monroe Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'MLU', | |
| municipality: 'Monroe' | |
| }, | |
| { | |
| name: 'Kimaam Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-PS', | |
| iata_code: 'KMM', | |
| municipality: 'Kimaam' | |
| }, | |
| { | |
| name: 'Mammoth Yosemite Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MMH', | |
| municipality: 'Mammoth Lakes' | |
| }, | |
| { | |
| name: 'McMinn County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'MMI', | |
| municipality: 'Athens' | |
| }, | |
| { | |
| name: 'Southwest Minnesota Regional Airport - Marshall/Ryan Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'MML', | |
| municipality: 'Marshall' | |
| }, | |
| { | |
| name: 'Selfs Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'MMS', | |
| municipality: 'Marks' | |
| }, | |
| { | |
| name: 'Mc Entire Joint National Guard Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'MMT', | |
| municipality: 'Eastover' | |
| }, | |
| { | |
| name: 'Morristown Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'MMU', | |
| municipality: 'Morristown' | |
| }, | |
| { | |
| name: 'Menominee\u2013Marinette Twin County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'MNM', | |
| municipality: 'Menominee' | |
| }, | |
| { | |
| name: 'Marion Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'MNN', | |
| municipality: 'Marion' | |
| }, | |
| { | |
| name: 'Mobile Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'MOB', | |
| municipality: 'Mobile' | |
| }, | |
| { | |
| name: 'Modesto City Co-Harry Sham Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MOD', | |
| municipality: 'Modesto' | |
| }, | |
| { | |
| name: 'Mount Pleasant Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'MOP', | |
| municipality: 'Mount Pleasant' | |
| }, | |
| { | |
| name: 'Morristown Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'MOR', | |
| municipality: 'Morristown' | |
| }, | |
| { | |
| name: 'Minot International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'MOT', | |
| municipality: 'Minot' | |
| }, | |
| { | |
| name: 'Morris Municipal Airport Charlie Schmidt Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'MOX', | |
| municipality: 'Morris' | |
| }, | |
| { | |
| name: 'Mariposa Yosemite Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RMY', | |
| municipality: 'Mariposa' | |
| }, | |
| { | |
| name: 'Petit Jean Park Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'MPJ', | |
| municipality: 'Morrilton' | |
| }, | |
| { | |
| name: 'Pocono Mountains Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'MPO', | |
| municipality: 'Mount Pocono' | |
| }, | |
| { | |
| name: 'Mc Pherson Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'MPR', | |
| municipality: 'Mc Pherson' | |
| }, | |
| { | |
| name: 'Edward F Knapp State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VT', | |
| iata_code: 'MPV', | |
| municipality: 'Barre/Montpelier' | |
| }, | |
| { | |
| name: 'Mount Pleasant Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'MPZ', | |
| municipality: 'Mount Pleasant' | |
| }, | |
| { | |
| name: 'Macomb Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'MQB', | |
| municipality: 'Macomb' | |
| }, | |
| { | |
| name: 'Dare County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'MEO', | |
| municipality: 'Manteo' | |
| }, | |
| { | |
| name: 'Chester County G O Carlson Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'CTH', | |
| municipality: 'Coatesville' | |
| }, | |
| { | |
| name: 'Telfair Wheeler Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'MQW', | |
| municipality: 'Mc Rae' | |
| }, | |
| { | |
| name: 'Smyrna Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'MQY', | |
| municipality: 'Smyrna' | |
| }, | |
| { | |
| name: 'Eastern WV Regional Airport/Shepherd Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'MRB', | |
| municipality: 'Martinsburg' | |
| }, | |
| { | |
| name: 'Maury County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'MRC', | |
| municipality: 'Columbia/Mount Pleasant' | |
| }, | |
| { | |
| name: 'Marfa Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MRF', | |
| municipality: 'Marfa' | |
| }, | |
| { | |
| name: 'Foothills Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'MRN', | |
| municipality: 'Morganton' | |
| }, | |
| { | |
| name: 'Monterey Peninsula Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MRY', | |
| municipality: 'Monterey' | |
| }, | |
| { | |
| name: 'Northwest Alabama Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'MSL', | |
| municipality: 'Muscle Shoals' | |
| }, | |
| { | |
| name: 'Dane County Regional Truax Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'MSN', | |
| municipality: 'Madison' | |
| }, | |
| { | |
| name: 'Missoula International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'MSO', | |
| municipality: 'Missoula' | |
| }, | |
| { | |
| name: 'Minneapolis\u2013Saint Paul International Airport / Wold\u2013Chamberlain Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'MSP', | |
| municipality: 'Minneapolis' | |
| }, | |
| { | |
| name: 'Massena International Airport Richards Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'MSS', | |
| municipality: 'Massena' | |
| }, | |
| { | |
| name: 'Sullivan County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'MSV', | |
| municipality: 'Monticello' | |
| }, | |
| { | |
| name: 'Louis Armstrong New Orleans International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'MSY', | |
| municipality: 'New Orleans' | |
| }, | |
| { | |
| name: 'Selfridge Air National Guard Base Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'MTC', | |
| municipality: 'Mount Clemens' | |
| }, | |
| { | |
| name: 'The Florida Keys Marathon Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'MTH', | |
| municipality: 'Marathon' | |
| }, | |
| { | |
| name: 'Montrose Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'MTJ', | |
| municipality: 'Montrose' | |
| }, | |
| { | |
| name: 'Martin State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'MTN', | |
| municipality: 'Baltimore' | |
| }, | |
| { | |
| name: 'Coles County Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'MTO', | |
| municipality: 'Mattoon' | |
| }, | |
| { | |
| name: 'Montauk Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'MTP', | |
| municipality: 'Montauk' | |
| }, | |
| { | |
| name: 'Manitowoc County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'MTW', | |
| municipality: 'Manitowoc' | |
| }, | |
| { | |
| name: 'Muir Army Air Field (Fort Indiantown Gap) Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'MUI', | |
| municipality: 'Fort Indiantown Gap(Annville)' | |
| }, | |
| { | |
| name: 'Spence Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'MUL', | |
| municipality: 'Moultrie' | |
| }, | |
| { | |
| name: 'Mountain Home Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'MUO', | |
| municipality: 'Mountain Home' | |
| }, | |
| { | |
| name: 'Muscatine Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'MUT', | |
| municipality: 'Muscatine' | |
| }, | |
| { | |
| name: 'Monroe County Aeroplex Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'MVC', | |
| municipality: 'Monroeville' | |
| }, | |
| { | |
| name: 'Montevideo Chippewa County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'MVE', | |
| municipality: 'Montevideo' | |
| }, | |
| { | |
| name: 'Morrisville-Stowe State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VT', | |
| iata_code: 'MVL', | |
| municipality: 'Morrisville' | |
| }, | |
| { | |
| name: 'Mount Vernon Outland Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'MVN', | |
| municipality: 'Mount Vernon' | |
| }, | |
| { | |
| name: "Martha's Vineyard Airport", | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'MVY', | |
| municipality: "Martha's Vineyard" | |
| }, | |
| { | |
| name: 'Veterans Airport of Southern Illinois', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'MWA', | |
| municipality: 'Marion' | |
| }, | |
| { | |
| name: 'Lawrence J Timmerman Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'MWC', | |
| municipality: 'Milwaukee' | |
| }, | |
| { | |
| name: 'Grant County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'MWH', | |
| municipality: 'Moses Lake' | |
| }, | |
| { | |
| name: 'Mineral Wells Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MWL', | |
| municipality: 'Mineral Wells' | |
| }, | |
| { | |
| name: 'Windom Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'MWM', | |
| municipality: 'Windom' | |
| }, | |
| { | |
| name: 'Middletown Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'MWO', | |
| municipality: 'Middletown' | |
| }, | |
| { | |
| name: 'Manila Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'MXA', | |
| municipality: 'Manila' | |
| }, | |
| { | |
| name: 'Maxwell Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'MXF', | |
| municipality: 'Montgomery' | |
| }, | |
| { | |
| name: 'Monticello Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'MXO', | |
| municipality: 'Monticello' | |
| }, | |
| { | |
| name: 'Moser Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KMY', | |
| municipality: 'Moser Bay' | |
| }, | |
| { | |
| name: 'Montgomery-Gibbs Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MYF', | |
| municipality: 'San Diego' | |
| }, | |
| { | |
| name: 'McCall Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'MYL', | |
| municipality: 'McCall' | |
| }, | |
| { | |
| name: 'Myrtle Beach International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'MYR', | |
| municipality: 'Myrtle Beach' | |
| }, | |
| { | |
| name: 'Yuba County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'MYV', | |
| municipality: 'Marysville' | |
| }, | |
| { | |
| name: 'Pinal Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'MZJ', | |
| municipality: 'Marana' | |
| }, | |
| { | |
| name: 'Marion Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'MZZ', | |
| municipality: 'Marion' | |
| }, | |
| { | |
| name: 'Cortland County Chase Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'CTX', | |
| municipality: 'Cortland' | |
| }, | |
| { | |
| name: 'Sidney Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'SXY', | |
| municipality: 'Sidney' | |
| }, | |
| { | |
| name: 'Albert S Nader Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'ONH', | |
| municipality: 'Oneonta' | |
| }, | |
| { | |
| name: 'New Orleans NAS JRB/Alvin Callender Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'NBG', | |
| municipality: 'New Orleans' | |
| }, | |
| { | |
| name: 'Naval Outlying Field Barin', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'NHX', | |
| municipality: 'Foley' | |
| }, | |
| { | |
| name: 'Dahlgren Naval Surface Warfare Center Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'DGN', | |
| municipality: 'Dahlgren' | |
| }, | |
| { | |
| name: 'Lakehurst Maxfield Field Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'NEL', | |
| municipality: 'Lakehurst' | |
| }, | |
| { | |
| name: 'Whitehouse Naval Outlying Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'NEN', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'Lakefront Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'NEW', | |
| municipality: 'New Orleans' | |
| }, | |
| { | |
| name: 'Fallon Naval Air Station', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'NFL', | |
| municipality: 'Fallon' | |
| }, | |
| { | |
| name: 'NAS Fort Worth JRB / Carswell Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'FWH', | |
| municipality: 'Fort Worth' | |
| }, | |
| { | |
| name: 'Naval Air Station Corpus Christi Truax Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'NGP', | |
| municipality: 'Corpus Christi' | |
| }, | |
| { | |
| name: 'Norfolk Naval Station (Chambers Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'NGU', | |
| municipality: 'Norfolk' | |
| }, | |
| { | |
| name: 'Cabaniss Field Naval Outlying Landing Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'NGW', | |
| municipality: 'Corpus Christi' | |
| }, | |
| { | |
| name: 'Patuxent River Naval Air Station (Trapnell Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'NHK', | |
| municipality: 'Patuxent River' | |
| }, | |
| { | |
| name: 'Brunswick Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'NHZ', | |
| municipality: 'Brunswick' | |
| }, | |
| { | |
| name: 'Jacksonville Naval Air Station (Towers Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'NIP', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'El Centro NAF Airport (Vraciu Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NJK', | |
| municipality: 'El Centro' | |
| }, | |
| { | |
| name: 'Miramar Marine Corps Air Station - Mitscher Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NKX', | |
| municipality: 'San Diego' | |
| }, | |
| { | |
| name: 'Lemoore Naval Air Station (Reeves Field) Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NLC', | |
| municipality: 'Lemoore' | |
| }, | |
| { | |
| name: 'Naval Air Station Pensacola Forrest Sherman Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'NPA', | |
| municipality: 'Pensacola' | |
| }, | |
| { | |
| name: 'Millington-Memphis Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'NQA', | |
| municipality: 'Millington' | |
| }, | |
| { | |
| name: 'Kingsville Naval Air Station', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'NQI', | |
| municipality: 'Kingsville' | |
| }, | |
| { | |
| name: 'Naval Air Station Key West/Boca Chica Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'NQX', | |
| municipality: 'Key West' | |
| }, | |
| { | |
| name: 'Naval Station Mayport / Admiral David L McDonald Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'NRB', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'Naval Outlying Field Imperial Beach (Ream Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NRS', | |
| municipality: 'Imperial Beach' | |
| }, | |
| { | |
| name: 'Whiting Field Naval Air Station - North', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'NSE', | |
| municipality: 'Milton' | |
| }, | |
| { | |
| name: 'Point Mugu Naval Air Station (Naval Base Ventura Co)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NTD', | |
| municipality: 'Point Mugu' | |
| }, | |
| { | |
| name: 'Oceana Naval Air Station', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'NTU', | |
| municipality: 'Virginia Beach' | |
| }, | |
| { | |
| name: 'Moffett Federal Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NUQ', | |
| municipality: 'Mountain View' | |
| }, | |
| { | |
| name: 'Whidbey Island Naval Air Station (Ault Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'NUW', | |
| municipality: 'Oak Harbor' | |
| }, | |
| { | |
| name: 'Nevada Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'NVD', | |
| municipality: 'Nevada' | |
| }, | |
| { | |
| name: 'Quantico Marine Corps Airfield / Turner Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'NYG', | |
| municipality: 'Quantico' | |
| }, | |
| { | |
| name: 'Yuma International Airport / Marine Corps Air Station Yuma', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'YUM', | |
| municipality: 'Yuma' | |
| }, | |
| { | |
| name: 'North Island Naval Air Station-Halsey Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NZY', | |
| municipality: 'San Diego' | |
| }, | |
| { | |
| name: 'Nervino Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'NVN', | |
| municipality: 'Beckwourth' | |
| }, | |
| { | |
| name: 'Columbia Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'COA', | |
| municipality: 'Columbia' | |
| }, | |
| { | |
| name: 'Oakdale Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'ODC', | |
| municipality: 'Oakdale' | |
| }, | |
| { | |
| name: 'Yerington Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'EYR', | |
| municipality: 'Yerington' | |
| }, | |
| { | |
| name: 'Albert J Ellis Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'OAJ', | |
| municipality: 'Richlands' | |
| }, | |
| { | |
| name: 'San Francisco Bay Oakland International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'OAK', | |
| municipality: 'Oakland' | |
| }, | |
| { | |
| name: 'Marina Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'OAR', | |
| municipality: 'Marina' | |
| }, | |
| { | |
| name: 'Okeechobee County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'OBE', | |
| municipality: 'Okeechobee' | |
| }, | |
| { | |
| name: 'Ocala International Airport - Jim Taylor Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'OCF', | |
| municipality: 'Ocala' | |
| }, | |
| { | |
| name: 'A L Mangham Jr. Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'OCH', | |
| municipality: 'Nacogdoches' | |
| }, | |
| { | |
| name: 'Warren Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'OCW', | |
| municipality: 'Washington' | |
| }, | |
| { | |
| name: 'Odessa Schlemeyer Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ODT', | |
| municipality: 'Odessa' | |
| }, | |
| { | |
| name: "O'Neal Airport", | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'OEA', | |
| municipality: 'Lawrenceville' | |
| }, | |
| { | |
| name: 'L O Simenstad Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'OEO', | |
| municipality: 'Osceola' | |
| }, | |
| { | |
| name: 'Offutt Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'OFF', | |
| municipality: 'Omaha' | |
| }, | |
| { | |
| name: 'Karl Stefan Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'OFK', | |
| municipality: 'Norfolk' | |
| }, | |
| { | |
| name: 'Ogallala Municipal Airport Searle Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'OGA', | |
| municipality: 'Ogallala' | |
| }, | |
| { | |
| name: 'Orangeburg Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'OGB', | |
| municipality: 'Orangeburg' | |
| }, | |
| { | |
| name: 'Ogden Hinckley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'OGD', | |
| municipality: 'Ogden' | |
| }, | |
| { | |
| name: 'Ogdensburg International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'OGS', | |
| municipality: 'Ogdensburg' | |
| }, | |
| { | |
| name: 'Lt Warren Eaton Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'OIC', | |
| municipality: 'Norwich' | |
| }, | |
| { | |
| name: 'Johnson County Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'OJC', | |
| municipality: 'Olathe' | |
| }, | |
| { | |
| name: 'Oceanside Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'OCN', | |
| municipality: 'Oceanside' | |
| }, | |
| { | |
| name: 'Will Rogers World Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'OKC', | |
| municipality: 'Oklahoma City' | |
| }, | |
| { | |
| name: 'AJ Eisenberg Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'ODW', | |
| municipality: 'Oak Harbor' | |
| }, | |
| { | |
| name: 'Kokomo Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'OKK', | |
| municipality: 'Kokomo' | |
| }, | |
| { | |
| name: 'Okmulgee Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'OKM', | |
| municipality: 'Okmulgee' | |
| }, | |
| { | |
| name: 'Garden County Airport/King Rhiley Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'OKS', | |
| municipality: 'Oshkosh' | |
| }, | |
| { | |
| name: 'Winchester Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'WGO', | |
| municipality: 'Winchester' | |
| }, | |
| { | |
| name: 'Dewitt Field - Old Town Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'OLD', | |
| municipality: 'Old Town' | |
| }, | |
| { | |
| name: 'Cattaraugus County-Olean Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'OLE', | |
| municipality: 'Olean' | |
| }, | |
| { | |
| name: 'L M Clayton Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'OLF', | |
| municipality: 'Wolf Point' | |
| }, | |
| { | |
| name: 'Olympia Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'OLM', | |
| municipality: 'Olympia' | |
| }, | |
| { | |
| name: 'Nogales International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'OLS', | |
| municipality: 'Nogales' | |
| }, | |
| { | |
| name: 'Columbus Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'OLU', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'Olive Branch Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'OLV', | |
| municipality: 'Olive Branch' | |
| }, | |
| { | |
| name: 'Olney Noble Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'OLY', | |
| municipality: 'Olney-Noble' | |
| }, | |
| { | |
| name: 'Komo-Manda Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-HE', | |
| iata_code: 'KOM', | |
| municipality: 'Komo' | |
| }, | |
| { | |
| name: 'Eppley Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'OMA', | |
| municipality: 'Omaha' | |
| }, | |
| { | |
| name: 'Omak Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'OMK', | |
| municipality: 'Omak' | |
| }, | |
| { | |
| name: 'Winona Municipal Airport Max Conrad Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'ONA', | |
| municipality: 'Winona' | |
| }, | |
| { | |
| name: "O'Neill Municipal Airport\u2013John L Baker Field", | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'ONL', | |
| municipality: "O'Neill" | |
| }, | |
| { | |
| name: 'Socorro Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'ONM', | |
| municipality: 'Socorro' | |
| }, | |
| { | |
| name: 'Ontario Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'ONO', | |
| municipality: 'Oregon' | |
| }, | |
| { | |
| name: 'Newport Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'ONP', | |
| municipality: 'Newport' | |
| }, | |
| { | |
| name: 'Ontario International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'ONT', | |
| municipality: 'Ontario' | |
| }, | |
| { | |
| name: 'Olney Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'ONY', | |
| municipality: 'Olney' | |
| }, | |
| { | |
| name: 'Oskaloosa Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'OOA', | |
| municipality: 'Cedar' | |
| }, | |
| { | |
| name: 'Miami-Opa Locka Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'OPF', | |
| municipality: 'Miami' | |
| }, | |
| { | |
| name: 'St Landry Parish Ahart Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'OPL', | |
| municipality: 'Opelousas' | |
| }, | |
| { | |
| name: 'Quonset State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-RI', | |
| iata_code: 'NCO', | |
| municipality: 'North Kingstown' | |
| }, | |
| { | |
| name: 'Kakoro(Koroko) Airstrip', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'KOR', | |
| municipality: 'Kakoro' | |
| }, | |
| { | |
| name: "Chicago O'Hare International Airport", | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'ORD', | |
| municipality: 'Chicago' | |
| }, | |
| { | |
| name: 'Norfolk International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'ORF', | |
| municipality: 'Norfolk' | |
| }, | |
| { | |
| name: 'Worcester Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'ORH', | |
| municipality: 'Worcester' | |
| }, | |
| { | |
| name: 'Orlando Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'ORL', | |
| municipality: 'Orlando' | |
| }, | |
| { | |
| name: 'Orcas Island Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'ESD', | |
| municipality: 'Eastsound' | |
| }, | |
| { | |
| name: 'Mount Pleasant Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MPS', | |
| municipality: 'Mount Pleasant' | |
| }, | |
| { | |
| name: 'Oscoda Wurtsmith Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'OSC', | |
| municipality: 'Oscoda' | |
| }, | |
| { | |
| name: 'Wittman Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'OSH', | |
| municipality: 'Oshkosh' | |
| }, | |
| { | |
| name: 'The Ohio State University Airport - Don Scott Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'OSU', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'Kosciusko Attala County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'OSX', | |
| municipality: 'Kosciusko' | |
| }, | |
| { | |
| name: 'Worthington Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'OTG', | |
| municipality: 'Worthington' | |
| }, | |
| { | |
| name: 'Southwest Oregon Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'OTH', | |
| municipality: 'North Bend' | |
| }, | |
| { | |
| name: 'Ottumwa Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'OTM', | |
| municipality: 'Ottumwa' | |
| }, | |
| { | |
| name: 'University of Oklahoma Westheimer Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'OUN', | |
| municipality: 'Norman' | |
| }, | |
| { | |
| name: 'Oroville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'OVE', | |
| municipality: 'Oroville' | |
| }, | |
| { | |
| name: 'Owatonna Degner Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'OWA', | |
| municipality: 'Owatonna' | |
| }, | |
| { | |
| name: 'Owensboro Daviess County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'OWB', | |
| municipality: 'Owensboro' | |
| }, | |
| { | |
| name: 'Norwood Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'OWD', | |
| municipality: 'Norwood' | |
| }, | |
| { | |
| name: 'Central Maine/Norridgewock Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'OWK', | |
| municipality: 'Norridgewock' | |
| }, | |
| { | |
| name: 'Ocean City Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'OCE', | |
| municipality: 'Ocean City' | |
| }, | |
| { | |
| name: 'Waterbury Oxford Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CT', | |
| iata_code: 'OXC', | |
| municipality: 'Oxford' | |
| }, | |
| { | |
| name: 'Miami University Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'OXD', | |
| municipality: 'Oxford' | |
| }, | |
| { | |
| name: 'Oxnard Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'OXR', | |
| municipality: 'Oxnard' | |
| }, | |
| { | |
| name: 'Olga Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KOY', | |
| municipality: 'Olga Bay' | |
| }, | |
| { | |
| name: 'St Marys Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'STQ', | |
| municipality: 'St Marys' | |
| }, | |
| { | |
| name: 'Ozona Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'OZA', | |
| municipality: 'Ozona' | |
| }, | |
| { | |
| name: 'Cairns AAF (Fort Rucker) Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'OZR', | |
| municipality: 'Fort Rucker/Ozark' | |
| }, | |
| { | |
| name: 'Uiju Airport', | |
| iso_country: 'KP', | |
| country_name: "Korea, Democratic People's Republic of", | |
| iso_region: 'KP-03', | |
| iata_code: 'UJU', | |
| municipality: 'Uiju' | |
| }, | |
| { | |
| name: 'Samjiy\u014fn Airport', | |
| iso_country: 'KP', | |
| country_name: "Korea, Democratic People's Republic of", | |
| iso_region: 'KP-10', | |
| iata_code: 'YJS', | |
| municipality: 'Samjiy\u014fn' | |
| }, | |
| { | |
| name: 'Orang (Chongjin) Airport', | |
| iso_country: 'KP', | |
| country_name: "Korea, Democratic People's Republic of", | |
| iso_region: 'KP-09', | |
| iata_code: 'RGO', | |
| municipality: 'Hoemun-ri' | |
| }, | |
| { | |
| name: 'Bisbee Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'BSQ', | |
| municipality: 'Bisbee' | |
| }, | |
| { | |
| name: 'Polacca Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'PXL', | |
| municipality: 'Polacca' | |
| }, | |
| { | |
| name: 'San Carlos Apache Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'GLB', | |
| municipality: 'Globe' | |
| }, | |
| { | |
| name: 'Holbrook Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'HBK', | |
| municipality: 'Holbrook' | |
| }, | |
| { | |
| name: 'Cochise County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'CWX', | |
| municipality: 'Willcox' | |
| }, | |
| { | |
| name: 'Cottonwood Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'CTW', | |
| municipality: 'Cottonwood' | |
| }, | |
| { | |
| name: 'Seattle Paine Field International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'PAE', | |
| municipality: 'Everett' | |
| }, | |
| { | |
| name: 'Barkley Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'PAH', | |
| municipality: 'Paducah' | |
| }, | |
| { | |
| name: 'Tyndall Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'PAM', | |
| municipality: 'Panama City' | |
| }, | |
| { | |
| name: 'Payson Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'PJB', | |
| municipality: 'Payson' | |
| }, | |
| { | |
| name: 'Palo Alto Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'PAO', | |
| municipality: 'Palo Alto' | |
| }, | |
| { | |
| name: 'Point Baker Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KPB', | |
| municipality: 'Point Baker' | |
| }, | |
| { | |
| name: 'Pine Bluff Regional Airport, Grider Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'PBF', | |
| municipality: 'Pine Bluff' | |
| }, | |
| { | |
| name: 'Plattsburgh International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'PBG', | |
| municipality: 'Plattsburgh' | |
| }, | |
| { | |
| name: 'Palm Beach International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'PBI', | |
| municipality: 'West Palm Beach' | |
| }, | |
| { | |
| name: 'Pike County Airport Hatcher Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'PVL', | |
| municipality: 'Pikeville' | |
| }, | |
| { | |
| name: 'Prairie Du Chien Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'PCD', | |
| municipality: 'Prairie Du Chien' | |
| }, | |
| { | |
| name: 'DeKalb Peachtree Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'PDK', | |
| municipality: 'Atlanta' | |
| }, | |
| { | |
| name: 'Eastern Oregon Regional Airport at Pendleton', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'PDT', | |
| municipality: 'Pendleton' | |
| }, | |
| { | |
| name: 'Portland International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'PDX', | |
| municipality: 'Portland' | |
| }, | |
| { | |
| name: 'Yapsiei Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'KPE', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Pecos Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'PEQ', | |
| municipality: 'Pecos' | |
| }, | |
| { | |
| name: 'Page Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'PGA', | |
| municipality: 'Page' | |
| }, | |
| { | |
| name: 'Punta Gorda Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'PGD', | |
| municipality: 'Punta Gorda' | |
| }, | |
| { | |
| name: 'Kirk Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'PGR', | |
| municipality: 'Paragould' | |
| }, | |
| { | |
| name: 'Pitt-Greenville Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'PGV', | |
| municipality: 'Greenville' | |
| }, | |
| { | |
| name: 'Harry Clever Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'PHD', | |
| municipality: 'New Philadelphia' | |
| }, | |
| { | |
| name: 'Newport News Williamsburg International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'PHF', | |
| municipality: 'Newport News' | |
| }, | |
| { | |
| name: 'Robert F Swinnie Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'ADR', | |
| municipality: 'Andrews' | |
| }, | |
| { | |
| name: 'Palm Beach County Glades Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'PHK', | |
| municipality: 'Pahokee' | |
| }, | |
| { | |
| name: 'Philadelphia International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'PHL', | |
| municipality: 'Philadelphia' | |
| }, | |
| { | |
| name: 'St Clair County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'PHN', | |
| municipality: 'Port Huron' | |
| }, | |
| { | |
| name: 'Philip Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'PHP', | |
| municipality: 'Philip' | |
| }, | |
| { | |
| name: 'Henry County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'PHT', | |
| municipality: 'Paris' | |
| }, | |
| { | |
| name: 'Phoenix Sky Harbor International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'PHX', | |
| municipality: 'Phoenix' | |
| }, | |
| { | |
| name: 'General Wayne A. Downing Peoria International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'PIA', | |
| municipality: 'Peoria' | |
| }, | |
| { | |
| name: 'Hattiesburg Laurel Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'PIB', | |
| municipality: 'Moselle' | |
| }, | |
| { | |
| name: 'St. Petersburg Clearwater International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'PIE', | |
| municipality: 'Pinellas Park' | |
| }, | |
| { | |
| name: 'Pocatello Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'PIH', | |
| municipality: 'Pocatello' | |
| }, | |
| { | |
| name: 'Harris County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'PIM', | |
| municipality: 'Pine Mountain' | |
| }, | |
| { | |
| name: 'Pierre Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'PIR', | |
| municipality: 'Pierre' | |
| }, | |
| { | |
| name: 'Pittsburgh International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'PIT', | |
| municipality: 'Pittsburgh' | |
| }, | |
| { | |
| name: 'Mid Ohio Valley Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'PKB', | |
| municipality: 'Parkersburg (Williamstown)' | |
| }, | |
| { | |
| name: 'Park Rapids Municipal Airport Konshok Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'PKD', | |
| municipality: 'Park Rapids' | |
| }, | |
| { | |
| name: 'Park Falls Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'PKF', | |
| municipality: 'Park Falls' | |
| }, | |
| { | |
| name: 'Kapal Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'KPL', | |
| municipality: 'Kapal' | |
| }, | |
| { | |
| name: 'M. Graham Clark Downtown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'PLK', | |
| municipality: 'Branson / Hollister' | |
| }, | |
| { | |
| name: 'Pellston Regional Airport of Emmet County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'PLN', | |
| municipality: 'Pellston' | |
| }, | |
| { | |
| name: 'St Clair County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'PLR', | |
| municipality: 'Pell City' | |
| }, | |
| { | |
| name: 'Pembina Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'PMB', | |
| municipality: 'Pembina' | |
| }, | |
| { | |
| name: 'Palmdale Regional Airport / USAF Plant 42 Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'PMD', | |
| municipality: 'Palmdale' | |
| }, | |
| { | |
| name: 'Greater Portsmouth Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'PMH', | |
| municipality: 'Portsmouth' | |
| }, | |
| { | |
| name: 'Pompano Beach Airpark', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'PPM', | |
| municipality: 'Pompano Beach' | |
| }, | |
| { | |
| name: 'Ralph Wenz Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'PWY', | |
| municipality: 'Pinedale' | |
| }, | |
| { | |
| name: 'Ponca City Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'PNC', | |
| municipality: 'Ponca City' | |
| }, | |
| { | |
| name: 'Northeast Philadelphia Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'PNE', | |
| municipality: 'Philadelphia' | |
| }, | |
| { | |
| name: 'Princeton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'PNN', | |
| municipality: 'Princeton' | |
| }, | |
| { | |
| name: 'Pensacola International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'PNS', | |
| municipality: 'Pensacola' | |
| }, | |
| { | |
| name: 'Pope Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'POB', | |
| municipality: 'Fort Bragg' | |
| }, | |
| { | |
| name: 'Brackett Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'POC', | |
| municipality: 'La Verne' | |
| }, | |
| { | |
| name: 'Polk Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'POE', | |
| municipality: 'Fort Polk' | |
| }, | |
| { | |
| name: 'Poplar Bluff Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'POF', | |
| municipality: 'Poplar Bluff' | |
| }, | |
| { | |
| name: 'Pocahontas Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'POH', | |
| municipality: 'Pocahontas' | |
| }, | |
| { | |
| name: 'Dutchess County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'POU', | |
| municipality: 'Poughkeepsie' | |
| }, | |
| { | |
| name: 'Powell Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'POY', | |
| municipality: 'Powell' | |
| }, | |
| { | |
| name: 'Perry Lefors Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'PPA', | |
| municipality: 'Pampa' | |
| }, | |
| { | |
| name: 'Tri-City Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'PPF', | |
| municipality: 'Parsons' | |
| }, | |
| { | |
| name: 'La Porte Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'LPO', | |
| municipality: 'La Porte' | |
| }, | |
| { | |
| name: 'Presque Isle International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'PQI', | |
| municipality: 'Presque Isle' | |
| }, | |
| { | |
| name: 'Trent Lott International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'PGL', | |
| municipality: 'Pascagoula' | |
| }, | |
| { | |
| name: 'Port Williams Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KPR', | |
| municipality: 'Port Williams' | |
| }, | |
| { | |
| name: 'Paso Robles Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'PRB', | |
| municipality: 'Paso Robles' | |
| }, | |
| { | |
| name: 'Prescott International Airport - Ernest A. Love Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'PRC', | |
| municipality: 'Prescott' | |
| }, | |
| { | |
| name: 'Perry Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'PRO', | |
| municipality: 'Perry' | |
| }, | |
| { | |
| name: 'Cox Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'PRX', | |
| municipality: 'Paris' | |
| }, | |
| { | |
| name: 'Mid-State Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'PSB', | |
| municipality: 'Philipsburg' | |
| }, | |
| { | |
| name: 'Tri Cities Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'PSC', | |
| municipality: 'Pasco' | |
| }, | |
| { | |
| name: 'Pittsfield Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'PSF', | |
| municipality: 'Pittsfield' | |
| }, | |
| { | |
| name: 'New River Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'PSK', | |
| municipality: 'Dublin' | |
| }, | |
| { | |
| name: 'Portsmouth International at Pease Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NH', | |
| iata_code: 'PSM', | |
| municipality: 'Portsmouth' | |
| }, | |
| { | |
| name: 'Palestine Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'PSN', | |
| municipality: 'Palestine' | |
| }, | |
| { | |
| name: 'Stevens Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'PGO', | |
| municipality: 'Pagosa Springs' | |
| }, | |
| { | |
| name: 'Palm Springs International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'PSP', | |
| municipality: 'Palm Springs' | |
| }, | |
| { | |
| name: 'Palacios Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'PSX', | |
| municipality: 'Palacios' | |
| }, | |
| { | |
| name: 'Dinwiddie County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'PTB', | |
| municipality: 'Petersburg' | |
| }, | |
| { | |
| name: 'Oakland County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'PTK', | |
| municipality: 'Pontiac' | |
| }, | |
| { | |
| name: 'Harry P Williams Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'PTN', | |
| municipality: 'Patterson' | |
| }, | |
| { | |
| name: 'Atkinson Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'PTS', | |
| municipality: 'Pittsburg' | |
| }, | |
| { | |
| name: 'Pratt Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'PTT', | |
| municipality: 'Pratt' | |
| }, | |
| { | |
| name: 'Porterville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'PTV', | |
| municipality: 'Porterville' | |
| }, | |
| { | |
| name: 'Heritage Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'PTW', | |
| municipality: 'Pottstown' | |
| }, | |
| { | |
| name: 'Pueblo Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'PUB', | |
| municipality: 'Pueblo' | |
| }, | |
| { | |
| name: 'Carbon County Regional Airport / Buck Davis Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'PUC', | |
| municipality: 'Price' | |
| }, | |
| { | |
| name: 'Pullman-Moscow Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'PUW', | |
| municipality: 'Pullman' | |
| }, | |
| { | |
| name: 'Provincetown Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'PVC', | |
| municipality: 'Provincetown' | |
| }, | |
| { | |
| name: 'Theodore Francis Green State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-RI', | |
| iata_code: 'PVD', | |
| municipality: 'Warwick' | |
| }, | |
| { | |
| name: 'Placerville Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'PVF', | |
| municipality: 'Placerville' | |
| }, | |
| { | |
| name: 'Provo-Utah Lake International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'PVU', | |
| municipality: 'Provo' | |
| }, | |
| { | |
| name: 'Hale County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'PVW', | |
| municipality: 'Plainview' | |
| }, | |
| { | |
| name: 'Wiley Post Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'PWA', | |
| municipality: 'Oklahoma City' | |
| }, | |
| { | |
| name: 'Sher-Wood Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'PWD', | |
| municipality: 'Plentywood' | |
| }, | |
| { | |
| name: 'Chicago Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'PWK', | |
| municipality: 'Chicago/Prospect Heights/Wheeling' | |
| }, | |
| { | |
| name: 'Portland International Jetport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'PWM', | |
| municipality: 'Portland' | |
| }, | |
| { | |
| name: 'Bremerton National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'PWT', | |
| municipality: 'Bremerton' | |
| }, | |
| { | |
| name: 'Port Bailey Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KPY', | |
| municipality: 'Port Bailey' | |
| }, | |
| { | |
| name: 'Plymouth Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'PYM', | |
| municipality: 'Plymouth' | |
| }, | |
| { | |
| name: 'Aban Uqua Airportse', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'QKA', | |
| municipality: 'KXXQO City' | |
| }, | |
| { | |
| name: 'Kol Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-JI', | |
| iata_code: 'KQL', | |
| municipality: 'Kol' | |
| }, | |
| { | |
| name: 'Chuja Port Heliport', | |
| iso_country: 'KR', | |
| country_name: 'Korea, Republic of', | |
| iso_region: 'KR-49', | |
| iata_code: 'JCJ', | |
| municipality: 'Chuja, Hach\u2019uja-do (Chujado Islands)' | |
| }, | |
| { | |
| name: 'John H Batten Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'RAC', | |
| municipality: 'Racine' | |
| }, | |
| { | |
| name: 'Riverside Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RAL', | |
| municipality: 'Riverside' | |
| }, | |
| { | |
| name: 'Rapid City Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'RAP', | |
| municipality: 'Rapid City' | |
| }, | |
| { | |
| name: 'Dallas Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'RBD', | |
| municipality: 'Dallas' | |
| }, | |
| { | |
| name: 'Roseburg Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'RBG', | |
| municipality: 'Roseburg' | |
| }, | |
| { | |
| name: 'Red Bluff Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RBL', | |
| municipality: 'Red Bluff' | |
| }, | |
| { | |
| name: 'Lowcountry Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'RBW', | |
| municipality: 'Walterboro' | |
| }, | |
| { | |
| name: 'Ellsworth Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'RCA', | |
| municipality: 'Rapid City' | |
| }, | |
| { | |
| name: 'H H Coffield Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'RCK', | |
| municipality: 'Rockdale' | |
| }, | |
| { | |
| name: 'Fulton County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'RCR', | |
| municipality: 'Rochester' | |
| }, | |
| { | |
| name: 'Nartron Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'RCT', | |
| municipality: 'Reed City' | |
| }, | |
| { | |
| name: 'Redding Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RDD', | |
| municipality: 'Redding' | |
| }, | |
| { | |
| name: 'Reading Regional Airport (Carl A Spaatz Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'RDG', | |
| municipality: 'Reading' | |
| }, | |
| { | |
| name: 'Roberts Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'RDM', | |
| municipality: 'Redmond' | |
| }, | |
| { | |
| name: 'Grand Forks Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ND', | |
| iata_code: 'RDR', | |
| municipality: 'Grand Forks' | |
| }, | |
| { | |
| name: 'Raleigh Durham International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'RDU', | |
| municipality: 'Raleigh/Durham' | |
| }, | |
| { | |
| name: 'Rome State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'REO', | |
| municipality: 'Rome' | |
| }, | |
| { | |
| name: 'Chicago Rockford International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'RFD', | |
| municipality: 'Chicago/Rockford' | |
| }, | |
| { | |
| name: 'Rooke Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'RFG', | |
| municipality: 'Refugio' | |
| }, | |
| { | |
| name: 'Rhinelander Oneida County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'RHI', | |
| municipality: 'Rhinelander' | |
| }, | |
| { | |
| name: 'Reid-Hillview Airport of Santa Clara County', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RHV', | |
| municipality: 'San Jose' | |
| }, | |
| { | |
| name: 'Richmond International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'RIC', | |
| municipality: 'Richmond' | |
| }, | |
| { | |
| name: 'Richmond Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'RID', | |
| municipality: 'Richmond' | |
| }, | |
| { | |
| name: 'Richfield Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'RIF', | |
| municipality: 'Richfield' | |
| }, | |
| { | |
| name: 'Garfield County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'RIL', | |
| municipality: 'Rifle' | |
| }, | |
| { | |
| name: 'Flabob Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RIR', | |
| municipality: 'Riverside' | |
| }, | |
| { | |
| name: 'March Air Reserve Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'RIV', | |
| municipality: 'Riverside' | |
| }, | |
| { | |
| name: 'Central Wyoming Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'RIW', | |
| municipality: 'Riverton' | |
| }, | |
| { | |
| name: 'Karawari Airstrip', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-ESW', | |
| iata_code: 'KRJ', | |
| municipality: 'Amboin' | |
| }, | |
| { | |
| name: 'Knox County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'RKD', | |
| municipality: 'Rockland' | |
| }, | |
| { | |
| name: 'Aransas County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'RKP', | |
| municipality: 'Rockport' | |
| }, | |
| { | |
| name: 'Robert S Kerr Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'RKR', | |
| municipality: 'Poteau' | |
| }, | |
| { | |
| name: 'Southwest Wyoming Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'RKS', | |
| municipality: 'Rock Springs' | |
| }, | |
| { | |
| name: 'Rockwood Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'RKW', | |
| municipality: 'Rockwood' | |
| }, | |
| { | |
| name: 'Richland Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'RLD', | |
| municipality: 'Richland' | |
| }, | |
| { | |
| name: 'Griffiss International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'RME', | |
| municipality: 'Rome' | |
| }, | |
| { | |
| name: 'Richard B Russell Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'RMG', | |
| municipality: 'Rome' | |
| }, | |
| { | |
| name: 'Warren County Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'RNC', | |
| municipality: 'Mc Minnville' | |
| }, | |
| { | |
| name: 'Randolph Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'RND', | |
| municipality: 'Universal City' | |
| }, | |
| { | |
| name: 'New Richmond Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'RNH', | |
| municipality: 'New Richmond' | |
| }, | |
| { | |
| name: 'Reno Tahoe International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'RNO', | |
| municipality: 'Reno' | |
| }, | |
| { | |
| name: 'Renton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'RNT', | |
| municipality: 'Renton' | |
| }, | |
| { | |
| name: 'Roanoke\u2013Blacksburg Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'ROA', | |
| municipality: 'Roanoke' | |
| }, | |
| { | |
| name: 'Frederick Douglass Greater Rochester International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'ROC', | |
| municipality: 'Rochester' | |
| }, | |
| { | |
| name: 'Rogers Municipal Airport-Carter Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'ROG', | |
| municipality: 'Rogers' | |
| }, | |
| { | |
| name: 'Roswell Air Center Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'ROW', | |
| municipality: 'Roswell' | |
| }, | |
| { | |
| name: 'Roseau Municipal Rudy Billberg Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'ROX', | |
| municipality: 'Roseau' | |
| }, | |
| { | |
| name: "Rice Lake Regional Airport - Carl's Field", | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'RIE', | |
| municipality: 'Rice Lake' | |
| }, | |
| { | |
| name: 'Roundup Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'RPX', | |
| municipality: 'Roundup' | |
| }, | |
| { | |
| name: 'Roben Hood Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'WBR', | |
| municipality: 'Big Rapids' | |
| }, | |
| { | |
| name: 'El Reno Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'RQO', | |
| municipality: 'El Reno' | |
| }, | |
| { | |
| name: 'Merrill Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'RRL', | |
| municipality: 'Merrill' | |
| }, | |
| { | |
| name: 'Warroad International Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'RRT', | |
| municipality: 'Warroad' | |
| }, | |
| { | |
| name: 'Russell Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'RSL', | |
| municipality: 'Russell' | |
| }, | |
| { | |
| name: 'Ruston Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'RSN', | |
| municipality: 'Ruston' | |
| }, | |
| { | |
| name: 'Rochester International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'RST', | |
| municipality: 'Rochester' | |
| }, | |
| { | |
| name: 'Southwest Florida International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'RSW', | |
| municipality: 'Fort Myers' | |
| }, | |
| { | |
| name: 'Raton Municipal Airport / Crews Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'RTN', | |
| municipality: 'Raton' | |
| }, | |
| { | |
| name: 'Kerau Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'KRU', | |
| municipality: 'Gunim' | |
| }, | |
| { | |
| name: 'Mid-Carolina Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'SRW', | |
| municipality: 'Salisbury' | |
| }, | |
| { | |
| name: 'Rutland - Southern Vermont Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VT', | |
| iata_code: 'RUT', | |
| municipality: 'Rutland' | |
| }, | |
| { | |
| name: 'Mifflin County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'RED', | |
| municipality: 'Reedsville' | |
| }, | |
| { | |
| name: 'Tulsa Riverside Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'RVS', | |
| municipality: 'Tulsa' | |
| }, | |
| { | |
| name: 'Redwood Falls Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'RWF', | |
| municipality: 'Redwood Falls' | |
| }, | |
| { | |
| name: 'Rocky Mount Wilson Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'RWI', | |
| municipality: 'Rocky Mount' | |
| }, | |
| { | |
| name: 'Rawlins Municipal Airport/Harvey Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'RWL', | |
| municipality: 'Rawlins' | |
| }, | |
| { | |
| name: 'Rexburg Madison County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'RXE', | |
| municipality: 'Rexburg' | |
| }, | |
| { | |
| name: 'Jasper County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'RNZ', | |
| municipality: 'Rensselaer' | |
| }, | |
| { | |
| name: 'Ashland Municipal Airport Sumner Parker Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'AHM', | |
| municipality: 'Ashland' | |
| }, | |
| { | |
| name: 'Bandon State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'BDY', | |
| municipality: 'Bandon' | |
| }, | |
| { | |
| name: 'Sunriver Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'SUO', | |
| municipality: 'Sunriver' | |
| }, | |
| { | |
| name: 'Madras Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'MDJ', | |
| municipality: 'Madras' | |
| }, | |
| { | |
| name: 'Prineville Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'PRZ', | |
| municipality: 'Prineville' | |
| }, | |
| { | |
| name: 'Idaho County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'IDH', | |
| municipality: 'Grangeville' | |
| }, | |
| { | |
| name: 'Shively Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'SAA', | |
| municipality: 'Saratoga' | |
| }, | |
| { | |
| name: 'Sacramento Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SAC', | |
| municipality: 'Sacramento' | |
| }, | |
| { | |
| name: 'Safford Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'SAD', | |
| municipality: 'Safford' | |
| }, | |
| { | |
| name: 'Santa Fe Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'SAF', | |
| municipality: 'Santa Fe' | |
| }, | |
| { | |
| name: 'San Diego International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SAN', | |
| municipality: 'San Diego' | |
| }, | |
| { | |
| name: 'Sparta Community Airport - Hunter Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'SAR', | |
| municipality: 'Sparta' | |
| }, | |
| { | |
| name: 'San Antonio International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SAT', | |
| municipality: 'San Antonio' | |
| }, | |
| { | |
| name: 'Savannah Hilton Head International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'SAV', | |
| municipality: 'Savannah' | |
| }, | |
| { | |
| name: 'Marquette/Sawyer International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'MQT', | |
| municipality: 'Gwinn' | |
| }, | |
| { | |
| name: 'Santa Barbara Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SBA', | |
| municipality: 'Santa Barbara' | |
| }, | |
| { | |
| name: 'San Bernardino International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SBD', | |
| municipality: 'San Bernardino' | |
| }, | |
| { | |
| name: 'Sheboygan County Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'SBM', | |
| municipality: 'Sheboygan' | |
| }, | |
| { | |
| name: 'South Bend Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'SBN', | |
| municipality: 'South Bend' | |
| }, | |
| { | |
| name: 'San Luis County Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SBP', | |
| municipality: 'San Luis Obispo' | |
| }, | |
| { | |
| name: 'Steamboat Springs Bob Adams Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'SBS', | |
| municipality: 'Steamboat Springs' | |
| }, | |
| { | |
| name: 'Shelby Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'SBX', | |
| municipality: 'Shelby' | |
| }, | |
| { | |
| name: 'Salisbury Ocean City Wicomico Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MD', | |
| iata_code: 'SBY', | |
| municipality: 'Salisbury' | |
| }, | |
| { | |
| name: 'Scribner State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'SCB', | |
| municipality: 'Scribner' | |
| }, | |
| { | |
| name: 'Schenectady County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'SCH', | |
| municipality: 'Schenectady' | |
| }, | |
| { | |
| name: 'Stockton Metropolitan Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SCK', | |
| municipality: 'Stockton' | |
| }, | |
| { | |
| name: 'Louisville Muhammad Ali International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'SDF', | |
| municipality: 'Louisville' | |
| }, | |
| { | |
| name: 'Scottsdale Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'SCF', | |
| municipality: 'Scottsdale' | |
| }, | |
| { | |
| name: 'Brown Field Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SDM', | |
| municipality: 'San Diego' | |
| }, | |
| { | |
| name: 'Sidney - Richland Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'SDY', | |
| municipality: 'Sidney' | |
| }, | |
| { | |
| name: 'Seattle\u2013Tacoma International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'SEA', | |
| municipality: 'Seattle' | |
| }, | |
| { | |
| name: 'Gillespie Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SEE', | |
| municipality: 'San Diego/El Cajon' | |
| }, | |
| { | |
| name: 'Sebring Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'SEF', | |
| municipality: 'Sebring' | |
| }, | |
| { | |
| name: 'Penn Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'SEG', | |
| municipality: 'Selinsgrove' | |
| }, | |
| { | |
| name: 'Craig Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'SEM', | |
| municipality: 'Selma' | |
| }, | |
| { | |
| name: 'Stephenville Clark Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SEP', | |
| municipality: 'Stephenville' | |
| }, | |
| { | |
| name: 'Freeman Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'SER', | |
| municipality: 'Seymour' | |
| }, | |
| { | |
| name: 'Sedona Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'SDX', | |
| municipality: 'Sedona' | |
| }, | |
| { | |
| name: 'Orlando Sanford International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'SFB', | |
| municipality: 'Orlando' | |
| }, | |
| { | |
| name: 'Felts Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'SFF', | |
| municipality: 'Spokane' | |
| }, | |
| { | |
| name: 'Sanford Seacoast Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'SFM', | |
| municipality: 'Sanford' | |
| }, | |
| { | |
| name: 'San Francisco International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SFO', | |
| municipality: 'San Francisco' | |
| }, | |
| { | |
| name: 'North Central State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-RI', | |
| iata_code: 'SFZ', | |
| municipality: 'Pawtucket' | |
| }, | |
| { | |
| name: 'Springfield Branson National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'SGF', | |
| municipality: 'Springfield' | |
| }, | |
| { | |
| name: 'Springfield-Beckley Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'SGH', | |
| municipality: 'Springfield' | |
| }, | |
| { | |
| name: 'Northeast Florida Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'UST', | |
| municipality: 'St Augustine' | |
| }, | |
| { | |
| name: 'Sugar Land Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SGR', | |
| municipality: 'Houston' | |
| }, | |
| { | |
| name: 'Stuttgart Municipal Airport / Carl Humphrey Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'SGT', | |
| municipality: 'Stuttgart' | |
| }, | |
| { | |
| name: 'St George Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'SGU', | |
| municipality: 'St George' | |
| }, | |
| { | |
| name: 'Shenandoah Valley Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'SHD', | |
| municipality: 'Weyers Cave' | |
| }, | |
| { | |
| name: 'Sanderson Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'SHN', | |
| municipality: 'Shelton' | |
| }, | |
| { | |
| name: 'Sheridan County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'SHR', | |
| municipality: 'Sheridan' | |
| }, | |
| { | |
| name: 'Shreveport Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-LA', | |
| iata_code: 'SHV', | |
| municipality: 'Shreveport' | |
| }, | |
| { | |
| name: 'Sikeston Memorial Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'SIK', | |
| municipality: 'Sikeston' | |
| }, | |
| { | |
| name: 'Sullivan County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'SIV', | |
| municipality: 'Sullivan' | |
| }, | |
| { | |
| name: 'Siskiyou County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SIY', | |
| municipality: 'Montague' | |
| }, | |
| { | |
| name: 'Norman Y. Mineta San Jose International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SJC', | |
| municipality: 'San Jose' | |
| }, | |
| { | |
| name: 'St Johns Industrial Air Park', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'SJN', | |
| municipality: 'St Johns' | |
| }, | |
| { | |
| name: 'San Angelo Regional Mathis Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SJT', | |
| municipality: 'San Angelo' | |
| }, | |
| { | |
| name: 'Fairchild Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'SKA', | |
| municipality: 'Spokane' | |
| }, | |
| { | |
| name: 'Lackland Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SKF', | |
| municipality: 'San Antonio' | |
| }, | |
| { | |
| name: 'Taos Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'TSM', | |
| municipality: 'Taos' | |
| }, | |
| { | |
| name: 'Storm Lake Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'SLB', | |
| municipality: 'Storm Lake' | |
| }, | |
| { | |
| name: 'Salt Lake City International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'SLC', | |
| municipality: 'Salt Lake City' | |
| }, | |
| { | |
| name: 'Salem-Willamette Valley Airport/McNary Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'SLE', | |
| municipality: 'Salem' | |
| }, | |
| { | |
| name: 'Smith Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'SLG', | |
| municipality: 'Siloam Springs' | |
| }, | |
| { | |
| name: 'Adirondack Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'SLK', | |
| municipality: 'Saranac Lake' | |
| }, | |
| { | |
| name: 'Salina Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'SLN', | |
| municipality: 'Salina' | |
| }, | |
| { | |
| name: 'Salem\u2013Leckrone Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'SLO', | |
| municipality: 'Salem' | |
| }, | |
| { | |
| name: 'Sulphur Springs Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SLR', | |
| municipality: 'Sulphur Springs' | |
| }, | |
| { | |
| name: 'Smith Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'SMD', | |
| municipality: 'Fort Wayne' | |
| }, | |
| { | |
| name: 'Lake Cumberland Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KY', | |
| iata_code: 'SME', | |
| municipality: 'Somerset' | |
| }, | |
| { | |
| name: 'Sacramento International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SMF', | |
| municipality: 'Sacramento' | |
| }, | |
| { | |
| name: 'Lemhi County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'SMN', | |
| municipality: 'Salmon' | |
| }, | |
| { | |
| name: 'Santa Monica Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SMO', | |
| municipality: 'Santa Monica' | |
| }, | |
| { | |
| name: 'Sumter Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'SUM', | |
| municipality: 'Sumter' | |
| }, | |
| { | |
| name: 'Santa Maria Public Airport Captain G Allan Hancock Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SMX', | |
| municipality: 'Santa Maria' | |
| }, | |
| { | |
| name: 'John Wayne Orange County International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SNA', | |
| municipality: 'Santa Ana' | |
| }, | |
| { | |
| name: 'Winston Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SNK', | |
| municipality: 'Snyder' | |
| }, | |
| { | |
| name: 'Shawnee Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'SNL', | |
| municipality: 'Shawnee' | |
| }, | |
| { | |
| name: 'Salinas Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SNS', | |
| municipality: 'Salinas' | |
| }, | |
| { | |
| name: 'Sidney Municipal Airport Lloyd W Carr Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'SNY', | |
| municipality: 'Sidney' | |
| }, | |
| { | |
| name: 'Moore County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'SOP', | |
| municipality: 'Carthage' | |
| }, | |
| { | |
| name: 'Show Low Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'SOW', | |
| municipality: 'Show Low' | |
| }, | |
| { | |
| name: 'Kosipe Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'KSP', | |
| municipality: 'Kosipe Mission' | |
| }, | |
| { | |
| name: 'Spartanburg Downtown Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'SPA', | |
| municipality: 'Spartanburg' | |
| }, | |
| { | |
| name: 'Black Hills Airport-Clyde Ice Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'SPF', | |
| municipality: 'Spearfish' | |
| }, | |
| { | |
| name: 'Albert Whitted Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'SPG', | |
| municipality: 'St Petersburg' | |
| }, | |
| { | |
| name: 'Abraham Lincoln Capital Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'SPI', | |
| municipality: 'Springfield' | |
| }, | |
| { | |
| name: 'Wichita Falls Municipal Airport / Sheppard Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SPS', | |
| municipality: 'Wichita Falls' | |
| }, | |
| { | |
| name: 'Spencer Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'SPW', | |
| municipality: 'Spencer' | |
| }, | |
| { | |
| name: 'Whiteside County Airport - Joseph H Bittorf Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'SQI', | |
| municipality: 'Rock Falls' | |
| }, | |
| { | |
| name: 'San Carlos Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SQL', | |
| municipality: 'San Carlos' | |
| }, | |
| { | |
| name: 'Searcy Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'SRC', | |
| municipality: 'Searcy' | |
| }, | |
| { | |
| name: 'Sarasota Bradenton International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'SRQ', | |
| municipality: 'Sarasota/Bradenton' | |
| }, | |
| { | |
| name: 'Sierra Blanca Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'RUI', | |
| municipality: 'Alto' | |
| }, | |
| { | |
| name: 'Shaw Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'SSC', | |
| municipality: 'Sumter' | |
| }, | |
| { | |
| name: 'Stinson Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SSF', | |
| municipality: 'San Antonio' | |
| }, | |
| { | |
| name: 'St Simons Island Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'SSI', | |
| municipality: 'St Simons Island' | |
| }, | |
| { | |
| name: 'Saint Cloud Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'STC', | |
| municipality: 'Saint Cloud' | |
| }, | |
| { | |
| name: 'Stevens Point Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'STE', | |
| municipality: 'Stevens Point' | |
| }, | |
| { | |
| name: 'Rosecrans Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'STJ', | |
| municipality: 'St Joseph' | |
| }, | |
| { | |
| name: 'Sterling Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'STK', | |
| municipality: 'Sterling' | |
| }, | |
| { | |
| name: 'St. Louis Lambert International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'STL', | |
| municipality: 'St Louis' | |
| }, | |
| { | |
| name: 'Saint Paul Downtown Holman Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'STP', | |
| municipality: 'Saint Paul' | |
| }, | |
| { | |
| name: 'Charles M. Schulz Sonoma County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'STS', | |
| municipality: 'Santa Rosa' | |
| }, | |
| { | |
| name: 'Witham Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'SUA', | |
| municipality: 'Stuart' | |
| }, | |
| { | |
| name: 'Stroud Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'SUD', | |
| municipality: 'Stroud' | |
| }, | |
| { | |
| name: 'Door County Cherryland Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'SUE', | |
| municipality: 'Sturgeon Bay' | |
| }, | |
| { | |
| name: 'Friedman Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'SUN', | |
| municipality: 'Hailey' | |
| }, | |
| { | |
| name: 'Spirit of St Louis Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'SUS', | |
| municipality: 'St Louis' | |
| }, | |
| { | |
| name: 'Travis Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SUU', | |
| municipality: 'Fairfield' | |
| }, | |
| { | |
| name: 'Richard I Bong Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'SUW', | |
| municipality: 'Superior' | |
| }, | |
| { | |
| name: 'Sioux Gateway Airport / Brigadier General Bud Day Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'SUX', | |
| municipality: 'Sioux City' | |
| }, | |
| { | |
| name: 'Grant County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'SVC', | |
| municipality: 'Silver City' | |
| }, | |
| { | |
| name: 'Susanville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'SVE', | |
| municipality: 'Susanville' | |
| }, | |
| { | |
| name: 'Statesville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'SVH', | |
| municipality: 'Statesville' | |
| }, | |
| { | |
| name: 'Hunter Army Air Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'SVN', | |
| municipality: 'Savannah' | |
| }, | |
| { | |
| name: 'New York Stewart International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'SWF', | |
| municipality: 'Newburgh' | |
| }, | |
| { | |
| name: 'Stillwater Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'SWO', | |
| municipality: 'Stillwater' | |
| }, | |
| { | |
| name: 'Avenger Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'SWW', | |
| municipality: 'Sweetwater' | |
| }, | |
| { | |
| name: 'Bomar Field Shelbyville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'SYI', | |
| municipality: 'Shelbyville' | |
| }, | |
| { | |
| name: 'Syracuse Hancock International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NY', | |
| iata_code: 'SYR', | |
| municipality: 'Syracuse' | |
| }, | |
| { | |
| name: 'Sylvester Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'SYV', | |
| municipality: 'Sylvester' | |
| }, | |
| { | |
| name: 'Whiteman Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'SZL', | |
| municipality: 'Knob Noster' | |
| }, | |
| { | |
| name: 'Tuba City Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'TBC', | |
| municipality: 'Tuba City' | |
| }, | |
| { | |
| name: 'Perry Stokes Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'TAD', | |
| municipality: 'Trinidad' | |
| }, | |
| { | |
| name: 'Thorne Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KTB', | |
| municipality: 'Thorne Bay' | |
| }, | |
| { | |
| name: 'Waynesville-St. Robert Regional Airport-Forney Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'TBN', | |
| municipality: 'Fort Leonard Wood' | |
| }, | |
| { | |
| name: 'Statesboro Bulloch County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'TBR', | |
| municipality: 'Statesboro' | |
| }, | |
| { | |
| name: 'Katiola Airport', | |
| iso_country: 'CI', | |
| country_name: "C\u00f4te d'Ivoire", | |
| iso_region: 'CI-VB', | |
| iata_code: 'KTC', | |
| municipality: 'Katiola' | |
| }, | |
| { | |
| name: 'Tucumcari Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'TCC', | |
| municipality: 'Tucumcari' | |
| }, | |
| { | |
| name: 'Tuscaloosa National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'TCL', | |
| municipality: 'Tuscaloosa' | |
| }, | |
| { | |
| name: 'McChord Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'TCM', | |
| municipality: 'Tacoma' | |
| }, | |
| { | |
| name: 'Truth or Consequences Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NM', | |
| iata_code: 'TCS', | |
| municipality: 'Truth or Consequences' | |
| }, | |
| { | |
| name: 'Ed Carlson Memorial Field South Lewis County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'TDO', | |
| municipality: 'Toledo' | |
| }, | |
| { | |
| name: 'Tradewind Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'TDW', | |
| municipality: 'Amarillo' | |
| }, | |
| { | |
| name: 'Toledo Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'TDZ', | |
| municipality: 'Toledo' | |
| }, | |
| { | |
| name: 'Teterboro Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'TEB', | |
| municipality: 'Teterboro' | |
| }, | |
| { | |
| name: 'Telluride Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CO', | |
| iata_code: 'TEX', | |
| municipality: 'Telluride' | |
| }, | |
| { | |
| name: 'Tullahoma Regional Airport William Northern Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'THA', | |
| municipality: 'Tullahoma' | |
| }, | |
| { | |
| name: 'Thompson Falls Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'THM', | |
| municipality: 'Thompson Falls' | |
| }, | |
| { | |
| name: 'York Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'THV', | |
| municipality: 'Thomasville' | |
| }, | |
| { | |
| name: 'Tinker Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'TIK', | |
| municipality: 'Oklahoma City' | |
| }, | |
| { | |
| name: 'Tacoma Narrows Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'TIW', | |
| municipality: 'Tacoma' | |
| }, | |
| { | |
| name: 'Space Coast Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'TIX', | |
| municipality: 'Titusville' | |
| }, | |
| { | |
| name: 'Kennett Memorial Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'KNT', | |
| municipality: 'Kennett' | |
| }, | |
| { | |
| name: 'Tallahassee Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'TLH', | |
| municipality: 'Tallahassee' | |
| }, | |
| { | |
| name: 'Mefford Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'TLR', | |
| municipality: 'Tulare' | |
| }, | |
| { | |
| name: 'Henry Tift Myers Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'TMA', | |
| municipality: 'Tifton' | |
| }, | |
| { | |
| name: 'Miami Executive Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'TMB', | |
| municipality: 'Miami' | |
| }, | |
| { | |
| name: 'Tillamook Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'OTK', | |
| municipality: 'Tillamook' | |
| }, | |
| { | |
| name: 'Twentynine Palms Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'TNP', | |
| municipality: 'Twentynine Palms' | |
| }, | |
| { | |
| name: 'Dade Collier Training and Transition Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'TNT', | |
| municipality: 'Miami' | |
| }, | |
| { | |
| name: 'Newton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IA', | |
| iata_code: 'TNU', | |
| municipality: 'Newton' | |
| }, | |
| { | |
| name: 'Tonopah Test Range Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'XSD', | |
| municipality: 'Tonopah' | |
| }, | |
| { | |
| name: 'Zamperini Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'TOA', | |
| municipality: 'Torrance' | |
| }, | |
| { | |
| name: 'Toccoa Airport - R.G. Letourneau Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'TOC', | |
| municipality: 'Toccoa' | |
| }, | |
| { | |
| name: 'Troy Municipal Airport at N Kenneth Campbell Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'TOI', | |
| municipality: 'Troy' | |
| }, | |
| { | |
| name: 'Eugene F. Kranz Toledo Express Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'TOL', | |
| municipality: 'Toledo' | |
| }, | |
| { | |
| name: 'Philip Billard Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'TOP', | |
| municipality: 'Topeka' | |
| }, | |
| { | |
| name: 'Torrington Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'TOR', | |
| municipality: 'Torrington' | |
| }, | |
| { | |
| name: 'Tampa International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'TPA', | |
| municipality: 'Tampa' | |
| }, | |
| { | |
| name: 'Peter O Knight Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'TPF', | |
| municipality: 'Tampa' | |
| }, | |
| { | |
| name: 'Tonopah Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'TPH', | |
| municipality: 'Tonopah' | |
| }, | |
| { | |
| name: 'Draughon Miller Central Texas Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'TPL', | |
| municipality: 'Temple' | |
| }, | |
| { | |
| name: 'Tri-Cities Regional TN/VA Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'TRI', | |
| municipality: 'Blountville' | |
| }, | |
| { | |
| name: 'Truckee Tahoe Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'TKF', | |
| municipality: 'Truckee' | |
| }, | |
| { | |
| name: 'Terrell Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'TRL', | |
| municipality: 'Terrell' | |
| }, | |
| { | |
| name: 'Jacqueline Cochran Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'TRM', | |
| municipality: 'Palm Springs' | |
| }, | |
| { | |
| name: 'Trenton Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'TRX', | |
| municipality: 'Trenton' | |
| }, | |
| { | |
| name: 'Tehachapi Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'TSP', | |
| municipality: 'Tehachapi' | |
| }, | |
| { | |
| name: 'Portland Troutdale Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OR', | |
| iata_code: 'TTD', | |
| municipality: 'Portland' | |
| }, | |
| { | |
| name: 'Trenton Mercer Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'TTN', | |
| municipality: 'Ewing Township' | |
| }, | |
| { | |
| name: 'Tulsa International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'TUL', | |
| municipality: 'Tulsa' | |
| }, | |
| { | |
| name: 'Tupelo Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'TUP', | |
| municipality: 'Tupelo' | |
| }, | |
| { | |
| name: 'Tucson International Airport / Morris Air National Guard Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'TUS', | |
| municipality: 'Tucson' | |
| }, | |
| { | |
| name: 'Cherry Capital Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'TVC', | |
| municipality: 'Traverse City' | |
| }, | |
| { | |
| name: 'Thief River Falls Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'TVF', | |
| municipality: 'Thief River Falls' | |
| }, | |
| { | |
| name: 'Thomasville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'TVI', | |
| municipality: 'Thomasville' | |
| }, | |
| { | |
| name: 'Lake Tahoe Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'TVL', | |
| municipality: 'South Lake Tahoe' | |
| }, | |
| { | |
| name: 'Joslin Field Magic Valley Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'TWF', | |
| municipality: 'Twin Falls' | |
| }, | |
| { | |
| name: 'Texarkana Regional Airport (Webb Field)', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'TXK', | |
| municipality: 'Texarkana' | |
| }, | |
| { | |
| name: 'Taylor Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'TYZ', | |
| municipality: 'Taylor' | |
| }, | |
| { | |
| name: 'Tyler Pounds Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'TYR', | |
| municipality: 'Tyler' | |
| }, | |
| { | |
| name: 'McGhee Tyson Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'TYS', | |
| municipality: 'Alcoa' | |
| }, | |
| { | |
| name: 'Bullfrog Basin Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'BFG', | |
| municipality: 'Bullfrog' | |
| }, | |
| { | |
| name: 'J. Randy McKnight Nephi Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'NPH', | |
| municipality: 'Nephi' | |
| }, | |
| { | |
| name: 'Green River Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'RVR', | |
| municipality: 'Green River' | |
| }, | |
| { | |
| name: 'Panguitch Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'PNU', | |
| municipality: 'Panguitch' | |
| }, | |
| { | |
| name: 'Cascade Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ID', | |
| iata_code: 'ICS', | |
| municipality: 'Cascade' | |
| }, | |
| { | |
| name: 'Columbus Lowndes County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'UBS', | |
| municipality: 'Columbus' | |
| }, | |
| { | |
| name: 'Everett-Stewart Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'UCY', | |
| municipality: 'Union City' | |
| }, | |
| { | |
| name: 'Bermuda Dunes Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'UDD', | |
| municipality: 'Bermuda Dunes' | |
| }, | |
| { | |
| name: 'Waukesha County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'UES', | |
| municipality: 'Waukesha' | |
| }, | |
| { | |
| name: 'Waukegan National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'UGN', | |
| municipality: 'Chicago/Waukegan' | |
| }, | |
| { | |
| name: 'Quillayute Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'UIL', | |
| municipality: 'Quillayute' | |
| }, | |
| { | |
| name: 'Quincy Regional Airport Baldwin Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'UIN', | |
| municipality: 'Quincy' | |
| }, | |
| { | |
| name: 'Wilkes County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NC', | |
| iata_code: 'IKB', | |
| municipality: 'North Wilkesboro' | |
| }, | |
| { | |
| name: 'Ukiah Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'UKI', | |
| municipality: 'Ukiah' | |
| }, | |
| { | |
| name: 'Quakertown Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'UKT', | |
| municipality: 'Quakertown' | |
| }, | |
| { | |
| name: 'New Ulm Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MN', | |
| iata_code: 'ULM', | |
| municipality: 'New Ulm' | |
| }, | |
| { | |
| name: 'Ohio University Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'ATO', | |
| municipality: 'Albany' | |
| }, | |
| { | |
| name: 'Dodge County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'UNU', | |
| municipality: 'Juneau' | |
| }, | |
| { | |
| name: 'State College Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'SCE', | |
| municipality: 'State College' | |
| }, | |
| { | |
| name: 'Franklin County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TN', | |
| iata_code: 'UOS', | |
| municipality: 'Sewanee' | |
| }, | |
| { | |
| name: 'University Oxford Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'UOX', | |
| municipality: 'Oxford' | |
| }, | |
| { | |
| name: 'Kupiano Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'KUP', | |
| municipality: 'Kupiano' | |
| }, | |
| { | |
| name: 'Tunica Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'UTM', | |
| municipality: 'Tunica' | |
| }, | |
| { | |
| name: 'Huntsville Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'HTV', | |
| municipality: 'Huntsville' | |
| }, | |
| { | |
| name: 'Newport State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-RI', | |
| iata_code: 'NPT', | |
| municipality: 'Newport' | |
| }, | |
| { | |
| name: 'Garner Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'UVA', | |
| municipality: 'Uvalde' | |
| }, | |
| { | |
| name: 'Kuyol Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'KUX', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Rock Hill - York County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SC', | |
| iata_code: 'RKH', | |
| municipality: 'Rock Hill' | |
| }, | |
| { | |
| name: 'Moody Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'VAD', | |
| municipality: 'Valdosta' | |
| }, | |
| { | |
| name: 'South Jersey Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'LLY', | |
| municipality: 'Lumberton' | |
| }, | |
| { | |
| name: 'Vandenberg Space Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'VBG', | |
| municipality: 'Lompoc' | |
| }, | |
| { | |
| name: 'Victoria Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'VCT', | |
| municipality: 'Victoria' | |
| }, | |
| { | |
| name: 'Southern California Logistics Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'VCV', | |
| municipality: 'Victorville' | |
| }, | |
| { | |
| name: 'Vidalia Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'VDI', | |
| municipality: 'Vidalia' | |
| }, | |
| { | |
| name: 'Kitava Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MBA', | |
| iata_code: 'KVE', | |
| municipality: 'Kitava Island' | |
| }, | |
| { | |
| name: 'Vernal Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'VEL', | |
| municipality: 'Vernal' | |
| }, | |
| { | |
| name: 'North Las Vegas Metropolitan International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'VGT', | |
| municipality: 'Las Vegas' | |
| }, | |
| { | |
| name: 'Culberson County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'VHN', | |
| municipality: 'Van Horn' | |
| }, | |
| { | |
| name: 'Rolla National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MO', | |
| iata_code: 'VIH', | |
| municipality: 'Vichy' | |
| }, | |
| { | |
| name: 'Visalia Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'VIS', | |
| municipality: 'Visalia' | |
| }, | |
| { | |
| name: 'Virginia Highlands Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'VJI', | |
| municipality: 'Abingdon' | |
| }, | |
| { | |
| name: 'Vicksburg Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MS', | |
| iata_code: 'VKS', | |
| municipality: 'Vicksburg' | |
| }, | |
| { | |
| name: 'Vandalia Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'VLA', | |
| municipality: 'Vandalia' | |
| }, | |
| { | |
| name: 'Valdosta Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'VLD', | |
| municipality: 'Valdosta' | |
| }, | |
| { | |
| name: 'Venice Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'VNC', | |
| municipality: 'Venice' | |
| }, | |
| { | |
| name: 'Van Nuys Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'VNY', | |
| municipality: 'Van Nuys' | |
| }, | |
| { | |
| name: 'Volk Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WI', | |
| iata_code: 'VOK', | |
| municipality: 'Camp Douglas' | |
| }, | |
| { | |
| name: 'Destin-Fort Walton Beach Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'VPS', | |
| municipality: 'Valparaiso' | |
| }, | |
| { | |
| name: 'Porter County Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IN', | |
| iata_code: 'VPZ', | |
| municipality: 'Valparaiso' | |
| }, | |
| { | |
| name: 'Cecil Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'VQQ', | |
| municipality: 'Jacksonville' | |
| }, | |
| { | |
| name: 'Vero Beach Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'VRB', | |
| municipality: 'Vero Beach' | |
| }, | |
| { | |
| name: 'Hartness State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VT', | |
| iata_code: 'VSF', | |
| municipality: 'North Springfield' | |
| }, | |
| { | |
| name: 'Miller Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'VTN', | |
| municipality: 'Valentine' | |
| }, | |
| { | |
| name: 'Illinois Valley Regional Airport Walter A Duncan Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-IL', | |
| iata_code: 'VYS', | |
| municipality: 'Peru' | |
| }, | |
| { | |
| name: 'Gettysburg Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'GTY', | |
| municipality: 'Gettysburg' | |
| }, | |
| { | |
| name: 'Sequim Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'SQV', | |
| municipality: 'Sequim' | |
| }, | |
| { | |
| name: 'Grant County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WV', | |
| iata_code: 'PGC', | |
| municipality: 'Petersburg' | |
| }, | |
| { | |
| name: 'Wallops Flight Facility Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-VA', | |
| iata_code: 'WAL', | |
| municipality: 'Wallops Island' | |
| }, | |
| { | |
| name: 'Greene County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'WAY', | |
| municipality: 'Waynesburg' | |
| }, | |
| { | |
| name: 'Wilkes Barre Wyoming Valley Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-PA', | |
| iata_code: 'WBW', | |
| municipality: 'Wilkes-Barre' | |
| }, | |
| { | |
| name: 'Enid Woodring Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'WDG', | |
| municipality: 'Enid' | |
| }, | |
| { | |
| name: 'Barrow County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'WDR', | |
| municipality: 'Winder' | |
| }, | |
| { | |
| name: 'Waterfall Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KWF', | |
| municipality: 'Waterfall' | |
| }, | |
| { | |
| name: 'Whiteman Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'WHP', | |
| municipality: 'Pacoima' | |
| }, | |
| { | |
| name: 'General William J Fox Airfield', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'WJF', | |
| municipality: 'Lancaster' | |
| }, | |
| { | |
| name: 'Strother Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-KS', | |
| iata_code: 'WLD', | |
| municipality: 'Winfield / Arkansas City' | |
| }, | |
| { | |
| name: 'Willows Glenn County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'WLW', | |
| municipality: 'Willows' | |
| }, | |
| { | |
| name: 'Winnemucca Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NV', | |
| iata_code: 'WMC', | |
| municipality: 'Winnemucca' | |
| }, | |
| { | |
| name: 'West Point Village Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KWP', | |
| municipality: 'West Point' | |
| }, | |
| { | |
| name: 'Robins Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-GA', | |
| iata_code: 'WRB', | |
| municipality: 'Warner Robins' | |
| }, | |
| { | |
| name: 'Mc Guire Air Force Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'WRI', | |
| municipality: 'Wrightstown' | |
| }, | |
| { | |
| name: 'Worland Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WY', | |
| iata_code: 'WRL', | |
| municipality: 'Worland' | |
| }, | |
| { | |
| name: 'Westerly State Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-RI', | |
| iata_code: 'WST', | |
| municipality: 'Westerly' | |
| }, | |
| { | |
| name: 'Watsonville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-CA', | |
| iata_code: 'WVI', | |
| municipality: 'Watsonville' | |
| }, | |
| { | |
| name: 'Waterville Robert Lafleur Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'WVL', | |
| municipality: 'Waterville' | |
| }, | |
| { | |
| name: 'Cape May County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NJ', | |
| iata_code: 'WWD', | |
| municipality: 'Wildwood' | |
| }, | |
| { | |
| name: 'West Woodward Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OK', | |
| iata_code: 'WWR', | |
| municipality: 'Woodward' | |
| }, | |
| { | |
| name: 'Kiwayu Airport', | |
| iso_country: 'KE', | |
| country_name: 'Kenya', | |
| iso_region: 'KE-300', | |
| iata_code: 'KWY', | |
| municipality: 'Kiwayu' | |
| }, | |
| { | |
| name: 'Yellowstone Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'WYS', | |
| municipality: 'West Yellowstone' | |
| }, | |
| { | |
| name: 'Tampa North Aero Park Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'KYO', | |
| municipality: 'Tampa' | |
| }, | |
| { | |
| name: 'Kasaan Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KXA', | |
| municipality: 'Kasaan' | |
| }, | |
| { | |
| name: 'Northwest Arkansas National Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AR', | |
| iata_code: 'XNA', | |
| municipality: 'Fayetteville/Springdale/Rogers' | |
| }, | |
| { | |
| name: 'West Branch Community Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'WBK', | |
| municipality: 'West Branch' | |
| }, | |
| { | |
| name: 'Willow Run Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MI', | |
| iata_code: 'YIP', | |
| municipality: 'Detroit' | |
| }, | |
| { | |
| name: 'Yakima Air Terminal McAllister Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-WA', | |
| iata_code: 'YKM', | |
| municipality: 'Yakima' | |
| }, | |
| { | |
| name: 'Chan Gurney Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-SD', | |
| iata_code: 'YKN', | |
| municipality: 'Yankton' | |
| }, | |
| { | |
| name: 'Youngstown Warren Regional Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'YNG', | |
| municipality: 'Youngstown/Warren' | |
| }, | |
| { | |
| name: 'Baikonur Krayniy Airport', | |
| iso_country: 'KZ', | |
| country_name: 'Kazakhstan', | |
| iso_region: 'KZ-BAY', | |
| iata_code: 'BXY', | |
| municipality: 'Baikonur' | |
| }, | |
| { | |
| name: 'Usharal Airport', | |
| iso_country: 'KZ', | |
| country_name: 'Kazakhstan', | |
| iso_region: 'KZ-JET', | |
| iata_code: 'USJ', | |
| municipality: 'Usharal' | |
| }, | |
| { | |
| name: 'Atbasar Airport', | |
| iso_country: 'KZ', | |
| country_name: 'Kazakhstan', | |
| iso_region: 'KZ-AKM', | |
| iata_code: 'ATX', | |
| municipality: 'Atbasar' | |
| }, | |
| { | |
| name: 'Zachar Bay Seaplane Base', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'KZB', | |
| municipality: 'Zachar Bay' | |
| }, | |
| { | |
| name: 'Kaintiba Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'KZF', | |
| municipality: 'Kaintiba' | |
| }, | |
| { | |
| name: 'Zephyrhills Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-FL', | |
| iata_code: 'ZPH', | |
| municipality: 'Zephyrhills' | |
| }, | |
| { | |
| name: 'Zanesville Municipal Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-OH', | |
| iata_code: 'ZZV', | |
| municipality: 'Zanesville' | |
| }, | |
| { | |
| name: 'Grand Canyon Caverns Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AZ', | |
| iata_code: 'PGS', | |
| municipality: 'Peach Springs' | |
| }, | |
| { | |
| name: 'Bokeo International Airport', | |
| iso_country: 'LA', | |
| country_name: "Lao People's Democratic Republic", | |
| iso_region: 'LA-BK', | |
| iata_code: 'BOR', | |
| municipality: 'Ton Phueng' | |
| }, | |
| { | |
| name: 'Layang-Layang Airport', | |
| iso_country: 'MY', | |
| country_name: 'Malaysia', | |
| iso_region: 'MY-12', | |
| iata_code: 'LAC', | |
| municipality: 'Pulau Layang-Layang (Swallow Reef)' | |
| }, | |
| { | |
| name: 'Dr. Antonio Agostinho Neto International Airport', | |
| iso_country: 'AO', | |
| country_name: 'Angola', | |
| iso_region: 'AO-LUA', | |
| iata_code: 'NBJ', | |
| municipality: 'Luanda (\u00cdcolo e Bengo)' | |
| }, | |
| { | |
| name: 'Kuk\u00ebs International Airport', | |
| iso_country: 'AL', | |
| country_name: 'Albania', | |
| iso_region: 'AL-07', | |
| iata_code: 'KFZ', | |
| municipality: 'Kuk\u00ebs' | |
| }, | |
| { | |
| name: 'Tirana International Airport Mother Teresa', | |
| iso_country: 'AL', | |
| country_name: 'Albania', | |
| iso_region: 'AL-02', | |
| iata_code: 'TIA', | |
| municipality: 'Rinas' | |
| }, | |
| { | |
| name: 'Burgas Airport', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-02', | |
| iata_code: 'BOJ', | |
| municipality: 'Burgas' | |
| }, | |
| { | |
| name: 'Gorna Oryahovitsa Airport', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-04', | |
| iata_code: 'GOZ', | |
| municipality: 'Gorna Oryahovitsa' | |
| }, | |
| { | |
| name: 'Palm Beach Seaplane Base', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NSW', | |
| iata_code: 'LBH', | |
| municipality: 'Sydney' | |
| }, | |
| { | |
| name: 'Luabo Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-Q', | |
| iata_code: 'LBM', | |
| municipality: 'Luabo' | |
| }, | |
| { | |
| name: 'Plovdiv International Airport', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-16', | |
| iata_code: 'PDV', | |
| municipality: 'Plovdiv' | |
| }, | |
| { | |
| name: 'Ruse Airport', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-18', | |
| iata_code: 'ROU', | |
| municipality: 'Shtraklevo' | |
| }, | |
| { | |
| name: 'Sofia Airport', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-22', | |
| iata_code: 'SOF', | |
| municipality: 'Sofia' | |
| }, | |
| { | |
| name: 'Stara Zagora Airport', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-24', | |
| iata_code: 'SZR', | |
| municipality: 'Stara Zagora' | |
| }, | |
| { | |
| name: 'Varna Airport', | |
| iso_country: 'BG', | |
| country_name: 'Bulgaria', | |
| iso_region: 'BG-03', | |
| iata_code: 'VAR', | |
| municipality: 'Varna' | |
| }, | |
| { | |
| name: 'Nicosia (Lefko\u015fa) Ercan International Airport', | |
| iso_country: 'CY', | |
| country_name: 'Cyprus', | |
| iso_region: 'CY-02', | |
| iata_code: 'ECN', | |
| municipality: 'Tymbou (Kirklar)' | |
| }, | |
| { | |
| name: 'Larnaca International Airport', | |
| iso_country: 'CY', | |
| country_name: 'Cyprus', | |
| iso_region: 'CY-04', | |
| iata_code: 'LCA', | |
| municipality: 'Larnaca' | |
| }, | |
| { | |
| name: 'Loncopue Airport', | |
| iso_country: 'AR', | |
| country_name: 'Argentina', | |
| iso_region: 'AR-Q', | |
| iata_code: 'LCP', | |
| municipality: 'Loncopue' | |
| }, | |
| { | |
| name: 'Paphos International Airport', | |
| iso_country: 'CY', | |
| country_name: 'Cyprus', | |
| iso_region: 'CY-06', | |
| iata_code: 'PFO', | |
| municipality: 'Paphos' | |
| }, | |
| { | |
| name: 'RAF Akrotiri', | |
| iso_country: 'CY', | |
| country_name: 'Cyprus', | |
| iso_region: 'CY-XX', | |
| iata_code: 'AKT', | |
| municipality: 'Akrotiri' | |
| }, | |
| { | |
| name: 'Dubrovnik Ru\u0111er Bo\u0161kovi\u0107 Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-19', | |
| iata_code: 'DBV', | |
| municipality: '\u010cilipi' | |
| }, | |
| { | |
| name: 'Lo\u0161inj Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-08', | |
| iata_code: 'LSZ', | |
| municipality: 'Mali Lo\u0161inj' | |
| }, | |
| { | |
| name: 'Osijek Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-14', | |
| iata_code: 'OSI', | |
| municipality: 'Klisa' | |
| }, | |
| { | |
| name: 'Pula Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-18', | |
| iata_code: 'PUY', | |
| municipality: 'Pula' | |
| }, | |
| { | |
| name: 'Rijeka Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-08', | |
| iata_code: 'RJK', | |
| municipality: 'Omi\u0161alj' | |
| }, | |
| { | |
| name: 'Bra\u010d Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-17', | |
| iata_code: 'BWK', | |
| municipality: 'Gornji Humac' | |
| }, | |
| { | |
| name: 'Split Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-17', | |
| iata_code: 'SPU', | |
| municipality: 'Ka\u0161tel \u0160tafili\u0107' | |
| }, | |
| { | |
| name: 'Lansdowne Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'LDW', | |
| municipality: 'Lansdowne Station' | |
| }, | |
| { | |
| name: 'Zagreb Franjo Tu\u0111man International Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-01', | |
| iata_code: 'ZAG', | |
| municipality: 'Velika Gorica' | |
| }, | |
| { | |
| name: 'Zadar Airport', | |
| iso_country: 'HR', | |
| country_name: 'Croatia', | |
| iso_region: 'HR-13', | |
| iata_code: 'ZAD', | |
| municipality: 'Zemunik Donji (Zadar)' | |
| }, | |
| { | |
| name: 'Albacete Airport / Los Llanos Air Base', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CM', | |
| iata_code: 'ABC', | |
| municipality: 'Albacete' | |
| }, | |
| { | |
| name: 'Alicante-Elche Miguel Hern\u00e1ndez Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-VC', | |
| iata_code: 'ALC', | |
| municipality: 'Alicante' | |
| }, | |
| { | |
| name: 'Almer\u00eda Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AN', | |
| iata_code: 'LEI', | |
| municipality: 'Almer\u00eda' | |
| }, | |
| { | |
| name: 'Asturias Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AS', | |
| iata_code: 'OVD', | |
| municipality: 'Ran\u00f3n' | |
| }, | |
| { | |
| name: 'C\u00f3rdoba Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AN', | |
| iata_code: 'ODB', | |
| municipality: 'C\u00f3rdoba' | |
| }, | |
| { | |
| name: 'Bilbao Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-PV', | |
| iata_code: 'BIO', | |
| municipality: 'Bilbao' | |
| }, | |
| { | |
| name: 'Burgos Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CL', | |
| iata_code: 'RGS', | |
| municipality: 'Burgos' | |
| }, | |
| { | |
| name: 'Josep Tarradellas Barcelona-El Prat Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CT', | |
| iata_code: 'BCN', | |
| municipality: 'Barcelona' | |
| }, | |
| { | |
| name: 'Badajoz Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-EX', | |
| iata_code: 'BJZ', | |
| municipality: 'Badajoz' | |
| }, | |
| { | |
| name: 'Castell\u00f3n-Costa Azahar Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-VC', | |
| iata_code: 'CDT', | |
| municipality: 'Castell\u00f3n de la Plana' | |
| }, | |
| { | |
| name: 'A Coru\u00f1a Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-GA', | |
| iata_code: 'LCG', | |
| municipality: 'Culleredo' | |
| }, | |
| { | |
| name: 'Lleida-Alguaire Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CT', | |
| iata_code: 'ILD', | |
| municipality: 'Lleida' | |
| }, | |
| { | |
| name: 'Girona-Costa Brava Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CT', | |
| iata_code: 'GRO', | |
| municipality: 'Girona' | |
| }, | |
| { | |
| name: 'F.G.L. Airport Granada-Ja\u00e9n Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AN', | |
| iata_code: 'GRX', | |
| municipality: 'Granada' | |
| }, | |
| { | |
| name: 'Huesca-Pirineos Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AR', | |
| iata_code: 'HSK', | |
| municipality: 'Monflorite/Alcal\u00e1 del Obispo' | |
| }, | |
| { | |
| name: 'Ibiza Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-IB', | |
| iata_code: 'IBZ', | |
| municipality: 'Ibiza (Eivissa)' | |
| }, | |
| { | |
| name: 'Jerez Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AN', | |
| iata_code: 'XRY', | |
| municipality: 'Jerez de la Frontera' | |
| }, | |
| { | |
| name: 'San Javier Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-MC', | |
| iata_code: 'MJV', | |
| municipality: 'San Javier' | |
| }, | |
| { | |
| name: 'Le\u00f3n Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CL', | |
| iata_code: 'LEN', | |
| municipality: 'Le\u00f3n' | |
| }, | |
| { | |
| name: 'Logro\u00f1o-Agoncillo Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-RI', | |
| iata_code: 'RJL', | |
| municipality: 'Logro\u00f1o' | |
| }, | |
| { | |
| name: 'Adolfo Su\u00e1rez Madrid\u2013Barajas Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-MD', | |
| iata_code: 'MAD', | |
| municipality: 'Madrid' | |
| }, | |
| { | |
| name: 'M\u00e1laga-Costa del Sol Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AN', | |
| iata_code: 'AGP', | |
| municipality: 'M\u00e1laga' | |
| }, | |
| { | |
| name: 'Menorca Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-IB', | |
| iata_code: 'MAH', | |
| municipality: 'Mah\u00f3n (Ma\u00f3)' | |
| }, | |
| { | |
| name: 'Regi\u00f3n de Murcia International Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-MC', | |
| iata_code: 'RMU', | |
| municipality: 'Corvera' | |
| }, | |
| { | |
| name: 'Moron Air Base', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AN', | |
| iata_code: 'OZP', | |
| municipality: 'Mor\u00f3n' | |
| }, | |
| { | |
| name: 'Lekoni Airport', | |
| iso_country: 'GA', | |
| country_name: 'Gabon', | |
| iso_region: 'GA-2', | |
| iata_code: 'LEO', | |
| municipality: 'Lekoni' | |
| }, | |
| { | |
| name: 'Palma de Mallorca Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-IB', | |
| iata_code: 'PMI', | |
| municipality: 'Palma de Mallorca' | |
| }, | |
| { | |
| name: 'Pamplona Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-NC', | |
| iata_code: 'PNA', | |
| municipality: 'Pamplona' | |
| }, | |
| { | |
| name: 'Ciudad Real International Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CM', | |
| iata_code: 'CQM', | |
| municipality: 'Ciudad Real' | |
| }, | |
| { | |
| name: 'Reus Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CT', | |
| iata_code: 'REU', | |
| municipality: 'Reus' | |
| }, | |
| { | |
| name: 'Rota Naval Station Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AN', | |
| iata_code: 'ROZ', | |
| municipality: 'Rota' | |
| }, | |
| { | |
| name: 'Salamanca Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CL', | |
| iata_code: 'SLM', | |
| municipality: 'Salamanca' | |
| }, | |
| { | |
| name: 'San Sebasti\u00e1n Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-PV', | |
| iata_code: 'EAS', | |
| municipality: 'Hondarribia' | |
| }, | |
| { | |
| name: 'Santiago-Rosal\u00eda de Castro Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-GA', | |
| iata_code: 'SCQ', | |
| municipality: 'Santiago de Compostela' | |
| }, | |
| { | |
| name: "Pirineus - la Seu d'Urgel Airport", | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CT', | |
| iata_code: 'LEU', | |
| municipality: "La Seu d'Urgell Pyrenees and Andorra" | |
| }, | |
| { | |
| name: 'Teruel Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AR', | |
| iata_code: 'TEV', | |
| municipality: 'Teruel' | |
| }, | |
| { | |
| name: 'Madrid\u2013Torrej\u00f3n Airport / Torrej\u00f3n Air Base', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-MD', | |
| iata_code: 'TOJ', | |
| municipality: 'Madrid' | |
| }, | |
| { | |
| name: 'Valencia Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-VC', | |
| iata_code: 'VLC', | |
| municipality: 'Valencia' | |
| }, | |
| { | |
| name: 'Valladolid Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CL', | |
| iata_code: 'VLL', | |
| municipality: 'Valladolid' | |
| }, | |
| { | |
| name: 'Vitoria Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-PV', | |
| iata_code: 'VIT', | |
| municipality: 'Alava' | |
| }, | |
| { | |
| name: 'Vigo Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-GA', | |
| iata_code: 'VGO', | |
| municipality: 'Vigo' | |
| }, | |
| { | |
| name: 'Seve Ballesteros-Santander Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-CB', | |
| iata_code: 'SDR', | |
| municipality: 'Santander' | |
| }, | |
| { | |
| name: 'Zaragoza Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AR', | |
| iata_code: 'ZAZ', | |
| municipality: 'Zaragoza' | |
| }, | |
| { | |
| name: 'Sevilla Airport', | |
| iso_country: 'ES', | |
| country_name: 'Spain', | |
| iso_region: 'ES-AN', | |
| iata_code: 'SVQ', | |
| municipality: 'Sevilla' | |
| }, | |
| { | |
| name: 'Dieppe-Saint-Aubin Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NOR', | |
| iata_code: 'DPE', | |
| municipality: 'Saint-Aubin-sur-Scie' | |
| }, | |
| { | |
| name: 'Calais-Dunkerque Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-HDF', | |
| iata_code: 'CQF', | |
| municipality: 'Marck' | |
| }, | |
| { | |
| name: 'Albert-Picardie Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-HDF', | |
| iata_code: 'BYF', | |
| municipality: 'M\u00e9aulte, Somme' | |
| }, | |
| { | |
| name: "Le Touquet-C\u00f4te d'Opale Airport", | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-HDF', | |
| iata_code: 'LTQ', | |
| municipality: 'Le Touquet-Paris-Plage' | |
| }, | |
| { | |
| name: 'Agen-La Garenne Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'AGF', | |
| municipality: 'Agen/La Garenne' | |
| }, | |
| { | |
| name: 'Bordeaux-M\u00e9rignac Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'BOD', | |
| municipality: 'Bordeaux/M\u00e9rignac' | |
| }, | |
| { | |
| name: 'Bergerac Dordogne P\u00e9rigord Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'EGC', | |
| municipality: 'Bergerac/Roumani\u00e8re' | |
| }, | |
| { | |
| name: 'Cognac-Ch\u00e2teaubernard (BA 709) Air Base', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'CNG', | |
| municipality: 'Cognac/Ch\u00e2teaubernard' | |
| }, | |
| { | |
| name: 'La Rochelle-\u00cele de R\u00e9 Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'LRH', | |
| municipality: 'La Rochelle/\u00cele de R\u00e9' | |
| }, | |
| { | |
| name: 'Poitiers-Biard Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'PIS', | |
| municipality: 'Poitiers/Biard' | |
| }, | |
| { | |
| name: 'Montlu\u00e7on-Gu\u00e9ret Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'MCU', | |
| municipality: 'L\u00e9paud, Creuse' | |
| }, | |
| { | |
| name: 'Limoges Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'LIG', | |
| municipality: 'Limoges/Bellegarde' | |
| }, | |
| { | |
| name: 'Niort - Marais Poitevin Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'NIT', | |
| municipality: 'Niort/Souch\u00e9' | |
| }, | |
| { | |
| name: 'Toulouse-Blagnac Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'TLS', | |
| municipality: 'Toulouse/Blagnac' | |
| }, | |
| { | |
| name: 'Pau Pyr\u00e9n\u00e9es Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'PUF', | |
| municipality: 'Pau/Pyr\u00e9n\u00e9es (Uzein)' | |
| }, | |
| { | |
| name: 'Tarbes-Lourdes-Pyr\u00e9n\u00e9es Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'LDE', | |
| municipality: 'Tarbes/Lourdes/Pyr\u00e9n\u00e9es' | |
| }, | |
| { | |
| name: 'Angoul\u00eame-Brie-Champniers Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'ANG', | |
| municipality: 'Angoul\u00eame/Brie/Champniers' | |
| }, | |
| { | |
| name: 'P\u00e9rigueux-Bassillac Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'PGX', | |
| municipality: 'P\u00e9rigueux/Bassillac' | |
| }, | |
| { | |
| name: 'Biarritz-Anglet-Bayonne Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'BIQ', | |
| municipality: 'Biarritz/Anglet/Bayonne' | |
| }, | |
| { | |
| name: 'A\u00e9rodrome de Cahors-Lalbenque', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'ZAO', | |
| municipality: 'Cahors/Lalbenque' | |
| }, | |
| { | |
| name: 'Albi-Le S\u00e9questre Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'LBI', | |
| municipality: 'Albi/Le S\u00e9questre' | |
| }, | |
| { | |
| name: 'Castres-Mazamet Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'DCM', | |
| municipality: 'Castres/Mazamet' | |
| }, | |
| { | |
| name: 'Rodez\u2013Aveyron Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'RDZ', | |
| municipality: 'Rodez/Marcillac' | |
| }, | |
| { | |
| name: 'Royan-M\u00e9dis Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'RYN', | |
| municipality: 'Royan/M\u00e9dis' | |
| }, | |
| { | |
| name: 'Rochefort-Saint-Agnant (BA 721) Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'RCO', | |
| municipality: 'Rochefort/Saint-Agnant' | |
| }, | |
| { | |
| name: 'A\u00e9rodrome de Belle \u00cele', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'BIC', | |
| municipality: 'Bangor' | |
| }, | |
| { | |
| name: 'Ouessant Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'OUI', | |
| municipality: 'Ushant' | |
| }, | |
| { | |
| name: "\u00cele d'Yeu Airport", | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'IDY', | |
| municipality: "\u00cele d'Yeu" | |
| }, | |
| { | |
| name: 'Colmar-Houssen Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-GES', | |
| iata_code: 'CMR', | |
| municipality: 'Colmar, Haut-Rhin' | |
| }, | |
| { | |
| name: 'Dole-Jura Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BFC', | |
| iata_code: 'DLE', | |
| municipality: 'Tavaux, Jura' | |
| }, | |
| { | |
| name: 'Meg\u00e8ve Altiport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'MVV', | |
| municipality: 'Meg\u00e8ve' | |
| }, | |
| { | |
| name: 'Aubenas-Ard\u00e8che M\u00e9ridional Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'OBS', | |
| municipality: 'Aubenas/Ard\u00e8che M\u00e9ridional' | |
| }, | |
| { | |
| name: 'Le Puy-Loudes Airfield', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'LPY', | |
| municipality: 'Chaspuzac, Haute-Loire' | |
| }, | |
| { | |
| name: "Altiport L'Alpe d'Huez - Henri GIRAUD", | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'AHZ', | |
| municipality: "L'Alpe d'Huez" | |
| }, | |
| { | |
| name: 'Metz-Nancy-Lorraine Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-GES', | |
| iata_code: 'ETZ', | |
| municipality: 'Goin' | |
| }, | |
| { | |
| name: 'Angers-Loire Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'ANE', | |
| municipality: 'Marc\u00e9, Maine-et-Loire' | |
| }, | |
| { | |
| name: 'Bastia-Poretta Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-COR', | |
| iata_code: 'BIA', | |
| municipality: 'Bastia/Poretta' | |
| }, | |
| { | |
| name: 'Calvi-Sainte-Catherine Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-COR', | |
| iata_code: 'CLY', | |
| municipality: 'Calvi/Sainte-Catherine' | |
| }, | |
| { | |
| name: 'Figari Sud-Corse Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-COR', | |
| iata_code: 'FSC', | |
| municipality: 'Figari Sud-Corse' | |
| }, | |
| { | |
| name: 'Ajaccio-Napol\u00e9on Bonaparte Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-COR', | |
| iata_code: 'AJA', | |
| municipality: 'Ajaccio/Napol\u00e9on Bonaparte' | |
| }, | |
| { | |
| name: 'Propriano Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-COR', | |
| iata_code: 'PRP', | |
| municipality: 'Propriano' | |
| }, | |
| { | |
| name: 'Solenzara (BA 126) Air Base', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-COR', | |
| iata_code: 'SOZ', | |
| municipality: 'Solenzara' | |
| }, | |
| { | |
| name: 'M\u00e9ribel Altiport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'MFX', | |
| municipality: 'Les Allues' | |
| }, | |
| { | |
| name: 'Auxerre-Branches Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BFC', | |
| iata_code: 'AUF', | |
| municipality: 'Appoigny, Yonne' | |
| }, | |
| { | |
| name: 'Chamb\u00e9ry Savoie Mont Blanc Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'CMF', | |
| municipality: 'Viviers-du-Lac' | |
| }, | |
| { | |
| name: 'Clermont-Ferrand Auvergne Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'CFE', | |
| municipality: 'Aulnat, Puy-de-D\u00f4me' | |
| }, | |
| { | |
| name: 'Bourges Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-CVL', | |
| iata_code: 'BOU', | |
| municipality: 'Bourges, Cher' | |
| }, | |
| { | |
| name: 'Courchevel Altiport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'CVF', | |
| municipality: 'Saint-Bon' | |
| }, | |
| { | |
| name: 'Lyon Saint-Exup\u00e9ry Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'LYS', | |
| municipality: 'Colombier-Saugnieu, Rh\u00f4ne' | |
| }, | |
| { | |
| name: 'Saint-Yan Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BFC', | |
| iata_code: 'SYT', | |
| municipality: 'Saint-Yan' | |
| }, | |
| { | |
| name: 'Roanne-Renaison Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'RNE', | |
| municipality: 'Saint-L\u00e9ger-sur-Roanne' | |
| }, | |
| { | |
| name: 'Annecy Haute-Savoie Mont Blanc Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'NCY', | |
| municipality: 'Epagny Metz-Tessy' | |
| }, | |
| { | |
| name: 'Grenoble Alpes Is\u00e8re Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'GNB', | |
| municipality: 'Saint-\u00c9tienne-de-Saint-Geoirs, Is\u00e8re' | |
| }, | |
| { | |
| name: 'Valence-Chabeuil Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'VAF', | |
| municipality: 'Chabeuil, Dr\u00f4me' | |
| }, | |
| { | |
| name: 'Vichy-Charmeil Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'VHY', | |
| municipality: 'Charmeil, Allier' | |
| }, | |
| { | |
| name: 'Aurillac Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'AUR', | |
| municipality: 'Aurillac' | |
| }, | |
| { | |
| name: 'Ch\u00e2teauroux-D\u00e9ols "Marcel Dassault" Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-CVL', | |
| iata_code: 'CHR', | |
| municipality: 'Ch\u00e2teauroux/D\u00e9ols' | |
| }, | |
| { | |
| name: 'Lyon Bron Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'LYN', | |
| municipality: 'Chassieu, Lyon' | |
| }, | |
| { | |
| name: 'Cannes-Mandelieu Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'CEQ', | |
| municipality: 'Cannes, Alpes-Maritimes' | |
| }, | |
| { | |
| name: 'Saint-\u00c9tienne-Bouth\u00e9on Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-ARA', | |
| iata_code: 'EBU', | |
| municipality: 'Saint-\u00c9tienne/Bouth\u00e9on' | |
| }, | |
| { | |
| name: 'Carcassonne Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'CCF', | |
| municipality: 'Carcassonne/Salvaza' | |
| }, | |
| { | |
| name: 'Marseille Provence Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'MRS', | |
| municipality: 'Marignane, Bouches-du-Rh\u00f4ne' | |
| }, | |
| { | |
| name: "Nice-C\u00f4te d'Azur Airport", | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'NCE', | |
| municipality: 'Nice, Alpes-Maritimes' | |
| }, | |
| { | |
| name: 'Perpignan-Rivesaltes (Llaban\u00e8re) Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'PGF', | |
| municipality: 'Perpignan/Rivesaltes' | |
| }, | |
| { | |
| name: 'Le Castellet Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'CTT', | |
| municipality: 'Le Castellet, Var' | |
| }, | |
| { | |
| name: 'Barcelonnette - Saint-Pons Airfield', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'BAE', | |
| municipality: 'Le Castellet' | |
| }, | |
| { | |
| name: 'Montpellier-M\u00e9diterran\u00e9e Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'MPL', | |
| municipality: 'Montpellier/M\u00e9diterran\u00e9e' | |
| }, | |
| { | |
| name: 'B\u00e9ziers-Vias Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'BZR', | |
| municipality: 'B\u00e9ziers/Vias' | |
| }, | |
| { | |
| name: 'Avignon-Caumont Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'AVN', | |
| municipality: 'Avignon, Vaucluse' | |
| }, | |
| { | |
| name: 'Gap-Tallard Airfield', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'GAT', | |
| municipality: 'Tallard, Hautes-Alpes' | |
| }, | |
| { | |
| name: 'Mende-Brenoux Airfield', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'MEN', | |
| municipality: 'Mende/Br\u00e9noux' | |
| }, | |
| { | |
| name: 'Mont-Dauphin - St-Cr\u00e9pin Airfield', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'SCP', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Paris-Beauvais Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-HDF', | |
| iata_code: 'BVA', | |
| municipality: 'Till\u00e9' | |
| }, | |
| { | |
| name: '\u00c9vreux-Fauville (BA 105) Air Base', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NOR', | |
| iata_code: 'EVX', | |
| municipality: '\u00c9vreux/Fauville' | |
| }, | |
| { | |
| name: 'Le Havre-Octeville Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NOR', | |
| iata_code: 'LEH', | |
| municipality: 'Le Havre' | |
| }, | |
| { | |
| name: 'Ch\u00e2lons-Vatry Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-GES', | |
| iata_code: 'XCR', | |
| municipality: 'Bussy-Lettr\u00e9e' | |
| }, | |
| { | |
| name: "Les Sables-d'Olonne Talmont Airport", | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'LSO', | |
| municipality: "Les Sables-d'Olonne" | |
| }, | |
| { | |
| name: 'Rouen Vall\u00e9e de Seine Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NOR', | |
| iata_code: 'URO', | |
| municipality: 'Boos' | |
| }, | |
| { | |
| name: 'Tours Val de Loire Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-CVL', | |
| iata_code: 'TUF', | |
| municipality: 'Tours, Indre-et-Loire' | |
| }, | |
| { | |
| name: 'Cholet Le Pontreau Airfield', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'CET', | |
| municipality: 'Cholet/Le Pontreau' | |
| }, | |
| { | |
| name: 'Laval-Entrammes Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'LVA', | |
| municipality: 'Laval, Mayenne' | |
| }, | |
| { | |
| name: "Orl\u00e9ans \u2013 Saint-Denis-de-l'H\u00f4tel Airport", | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-CVL', | |
| iata_code: 'ORE', | |
| municipality: 'Orl\u00e9ans' | |
| }, | |
| { | |
| name: 'Paris-Le Bourget Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-IDF', | |
| iata_code: 'LBG', | |
| municipality: 'Paris (Le Bourget, Seine-Saint-Denis)' | |
| }, | |
| { | |
| name: 'Creil Air Base', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-HDF', | |
| iata_code: 'CSF', | |
| municipality: 'Creil' | |
| }, | |
| { | |
| name: 'Charles de Gaulle International Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-IDF', | |
| iata_code: 'CDG', | |
| municipality: "Paris (Roissy-en-France, Val-d'Oise)" | |
| }, | |
| { | |
| name: 'Toussus-le-Noble Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-IDF', | |
| iata_code: 'TNF', | |
| municipality: 'Toussus-le-Noble, Yvelines' | |
| }, | |
| { | |
| name: 'Paris-Orly Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-IDF', | |
| iata_code: 'ORY', | |
| municipality: 'Paris (Orly, Val-de-Marne)' | |
| }, | |
| { | |
| name: 'Pontoise-Cormeilles Aerodrome', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-IDF', | |
| iata_code: 'POX', | |
| municipality: "Cormeilles-en-Vexin, Val-d'Oise" | |
| }, | |
| { | |
| name: 'V\u00e9lizy-Villacoublay Air Base', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-IDF', | |
| iata_code: 'VIY', | |
| municipality: 'V\u00e9lizy-Villacoublay, Yvelines' | |
| }, | |
| { | |
| name: 'Nevers-Fourchambault Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BFC', | |
| iata_code: 'NVS', | |
| municipality: 'Marzy, Ni\u00e8vre' | |
| }, | |
| { | |
| name: 'Lille Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-HDF', | |
| iata_code: 'LIL', | |
| municipality: 'Lesquin' | |
| }, | |
| { | |
| name: 'Merville-Calonne Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-HDF', | |
| iata_code: 'HZB', | |
| municipality: 'Merville, Nord' | |
| }, | |
| { | |
| name: 'Brest Bretagne Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'BES', | |
| municipality: 'Brest/Guipavas' | |
| }, | |
| { | |
| name: 'Cherbourg-Maupertus Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NOR', | |
| iata_code: 'CER', | |
| municipality: 'Gonneville-Le Theil, Manche' | |
| }, | |
| { | |
| name: 'Dinard-Pleurtuit-Saint-Malo Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'DNR', | |
| municipality: 'Pleurtuit, Ille-et-Vilaine' | |
| }, | |
| { | |
| name: 'La Baule-Escoublac Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'LBY', | |
| municipality: 'La Baule-Escoublac' | |
| }, | |
| { | |
| name: 'Granville Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NOR', | |
| iata_code: 'GFR', | |
| municipality: 'Br\u00e9ville-sur-Mer, Manche' | |
| }, | |
| { | |
| name: 'Deauville-Normandie Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NOR', | |
| iata_code: 'DOL', | |
| municipality: 'Deauville, Calvados' | |
| }, | |
| { | |
| name: 'Lorient South Brittany (Bretagne Sud) Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'LRT', | |
| municipality: 'Lorient/Lann/Bihou\u00e9' | |
| }, | |
| { | |
| name: 'La Roche-sur-Yon Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'EDM', | |
| municipality: 'La Roche-sur-Yon/Les Ajoncs' | |
| }, | |
| { | |
| name: 'Landivisiau Air Base', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'LDV', | |
| municipality: 'Landivisiau' | |
| }, | |
| { | |
| name: 'Caen-Carpiquet Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NOR', | |
| iata_code: 'CFR', | |
| municipality: 'Carpiquet, Calvados' | |
| }, | |
| { | |
| name: 'Le Mans-Arnage Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'LME', | |
| municipality: 'Le Mans, Sarthe' | |
| }, | |
| { | |
| name: 'Rennes-Saint-Jacques Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'RNS', | |
| municipality: 'Saint-Jacques-de-la-Lande, Ille-et-Vilaine' | |
| }, | |
| { | |
| name: 'Lannion-C\u00f4te de Granit Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'LAI', | |
| municipality: 'Lannion' | |
| }, | |
| { | |
| name: 'Quimper-Cornouaille Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'UIP', | |
| municipality: 'Quimper/Pluguffan' | |
| }, | |
| { | |
| name: 'Nantes Atlantique Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'NTE', | |
| municipality: 'Nantes' | |
| }, | |
| { | |
| name: 'Saint-Brieuc-Armor Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'SBK', | |
| municipality: "Tr\u00e9muson, C\u00f4tes-d'Armor" | |
| }, | |
| { | |
| name: 'Morlaix-Ploujean Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'MXN', | |
| municipality: 'Morlaix/Ploujean' | |
| }, | |
| { | |
| name: 'Vannes-Meucon Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BRE', | |
| iata_code: 'VNE', | |
| municipality: 'Vannes/Meucon' | |
| }, | |
| { | |
| name: 'Saint-Nazaire-Montoir Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PDL', | |
| iata_code: 'SNR', | |
| municipality: 'Saint-Nazaire/Montoir' | |
| }, | |
| { | |
| name: 'EuroAirport Basel-Mulhouse-Freiburg', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-GES', | |
| iata_code: 'BSL', | |
| municipality: 'Saint-Louis' | |
| }, | |
| { | |
| name: 'Dijon-Bourgogne Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-BFC', | |
| iata_code: 'DIJ', | |
| municipality: "Ouges, C\u00f4te-d'Or" | |
| }, | |
| { | |
| name: '\u00c9pinal-Mirecourt Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-GES', | |
| iata_code: 'EPL', | |
| municipality: 'Juvaincourt, Vosges' | |
| }, | |
| { | |
| name: 'Brive-Souillac', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-NAQ', | |
| iata_code: 'BVE', | |
| municipality: 'Brive la Gaillarde' | |
| }, | |
| { | |
| name: 'Nancy-Essey Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-GES', | |
| iata_code: 'ENC', | |
| municipality: 'Tomblaine, Meurthe-et-Moselle' | |
| }, | |
| { | |
| name: 'Strasbourg Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-GES', | |
| iata_code: 'SXB', | |
| municipality: 'Strasbourg' | |
| }, | |
| { | |
| name: 'Toulon-Hy\u00e8res Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'TLN', | |
| municipality: 'Hy\u00e8res, Var' | |
| }, | |
| { | |
| name: 'Rize\u2013Artvin Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-53', | |
| iata_code: 'RZV', | |
| municipality: 'Rize' | |
| }, | |
| { | |
| name: 'N\u00eemes-Arles-Camargue Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-OCC', | |
| iata_code: 'FNI', | |
| municipality: 'N\u00eemes/Garons' | |
| }, | |
| { | |
| name: 'La M\u00f4le-Saint-Tropez Airport', | |
| iso_country: 'FR', | |
| country_name: 'France', | |
| iso_region: 'FR-PAC', | |
| iata_code: 'LTT', | |
| municipality: 'La M\u00f4le, Var' | |
| }, | |
| { | |
| name: 'Miquelon Airport', | |
| iso_country: 'PM', | |
| country_name: 'Saint Pierre and Miquelon', | |
| iso_region: 'PM-ML', | |
| iata_code: 'MQC', | |
| municipality: 'Miquelon' | |
| }, | |
| { | |
| name: 'St Pierre Airport', | |
| iso_country: 'PM', | |
| country_name: 'Saint Pierre and Miquelon', | |
| iso_region: 'PM-SP', | |
| iata_code: 'FSP', | |
| municipality: 'Saint-Pierre' | |
| }, | |
| { | |
| name: 'Andravida Air Base', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-G', | |
| iata_code: 'PYR', | |
| municipality: 'Andravida' | |
| }, | |
| { | |
| name: 'Alexandroupoli Democritus Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-A', | |
| iata_code: 'AXD', | |
| municipality: 'Alexandroupolis' | |
| }, | |
| { | |
| name: 'Athens Eleftherios Venizelos International Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-I', | |
| iata_code: 'ATH', | |
| municipality: 'Spata-Artemida' | |
| }, | |
| { | |
| name: 'Nea Anchialos National Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-E', | |
| iata_code: 'VOL', | |
| municipality: 'Nea Anchialos' | |
| }, | |
| { | |
| name: 'Mulan Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'LGE', | |
| municipality: 'Lake Gregory' | |
| }, | |
| { | |
| name: 'Chios Island National Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-K', | |
| iata_code: 'JKH', | |
| municipality: 'Chios Island' | |
| }, | |
| { | |
| name: 'Ikaria Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-K', | |
| iata_code: 'JIK', | |
| municipality: 'Ikaria Island' | |
| }, | |
| { | |
| name: 'Ioannina King Pyrrhus National Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-D', | |
| iata_code: 'IOA', | |
| municipality: 'Ioannina' | |
| }, | |
| { | |
| name: 'Heraklion International Nikos Kazantzakis Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-M', | |
| iata_code: 'HER', | |
| municipality: 'Heraklion' | |
| }, | |
| { | |
| name: 'Kastoria National Airport Aristotle', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-C', | |
| iata_code: 'KSO', | |
| municipality: 'Argos Orestiko' | |
| }, | |
| { | |
| name: 'Kithira Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-I', | |
| iata_code: 'KIT', | |
| municipality: 'Kithira Island' | |
| }, | |
| { | |
| name: 'Kefallinia Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-F', | |
| iata_code: 'EFL', | |
| municipality: 'Kefallinia Island' | |
| }, | |
| { | |
| name: 'Kastelorizo Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'KZS', | |
| municipality: 'Kastelorizo Island' | |
| }, | |
| { | |
| name: 'Kalamata Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-J', | |
| iata_code: 'KLX', | |
| municipality: 'Kalamata' | |
| }, | |
| { | |
| name: 'Kos Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'KGS', | |
| municipality: 'Kos Island' | |
| }, | |
| { | |
| name: 'Karpathos Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'AOK', | |
| municipality: 'Karpathos Island' | |
| }, | |
| { | |
| name: 'Corfu Ioannis Kapodistrias International Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-F', | |
| iata_code: 'CFU', | |
| municipality: 'Kerkyra (Corfu)' | |
| }, | |
| { | |
| name: 'Kasos Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'KSJ', | |
| municipality: 'Kasos Island' | |
| }, | |
| { | |
| name: 'Kavala Alexander the Great International Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-A', | |
| iata_code: 'KVA', | |
| municipality: 'Kavala' | |
| }, | |
| { | |
| name: 'Kalymnos Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'JKL', | |
| municipality: 'Kalymnos Island' | |
| }, | |
| { | |
| name: 'Kozani National Airport Filippos', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-C', | |
| iata_code: 'KZI', | |
| municipality: 'Kozani' | |
| }, | |
| { | |
| name: 'Leros Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'LRS', | |
| municipality: 'Leros Island' | |
| }, | |
| { | |
| name: 'Limnos Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-K', | |
| iata_code: 'LXS', | |
| municipality: 'Limnos Island' | |
| }, | |
| { | |
| name: 'Larissa Air Base', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-E', | |
| iata_code: 'LRA', | |
| municipality: 'Larissa' | |
| }, | |
| { | |
| name: 'Mykonos Island National Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'JMK', | |
| municipality: 'Mykonos' | |
| }, | |
| { | |
| name: 'Milos Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'MLO', | |
| municipality: 'Milos Island' | |
| }, | |
| { | |
| name: 'Mytilene International Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-K', | |
| iata_code: 'MJT', | |
| municipality: 'Mytilene' | |
| }, | |
| { | |
| name: 'Linga Linga Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WBK', | |
| iata_code: 'LGN', | |
| municipality: 'Linga Linga' | |
| }, | |
| { | |
| name: 'Naxos Island National Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'JNX', | |
| municipality: 'Naxos' | |
| }, | |
| { | |
| name: 'Bicol International Airport', | |
| iso_country: 'PH', | |
| country_name: 'Philippines', | |
| iso_region: 'PH-ALB', | |
| iata_code: 'DRP', | |
| municipality: 'Legazpi' | |
| }, | |
| { | |
| name: 'Paros National Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'PAS', | |
| municipality: 'Paros' | |
| }, | |
| { | |
| name: 'Astypalaia Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'JTY', | |
| municipality: 'Astypalaia Island' | |
| }, | |
| { | |
| name: 'Aktion National Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-D', | |
| iata_code: 'PVK', | |
| municipality: 'Preveza' | |
| }, | |
| { | |
| name: 'Diagoras Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'RHO', | |
| municipality: 'Rhodes' | |
| }, | |
| { | |
| name: 'Patras Araxos Agamemnon Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-G', | |
| iata_code: 'GPA', | |
| municipality: 'Patras' | |
| }, | |
| { | |
| name: 'Chania International Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-M', | |
| iata_code: 'CHQ', | |
| municipality: 'Souda' | |
| }, | |
| { | |
| name: 'Skiathos Island National Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-E', | |
| iata_code: 'JSI', | |
| municipality: 'Skiathos' | |
| }, | |
| { | |
| name: 'Samos Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-K', | |
| iata_code: 'SMI', | |
| municipality: 'Samos Island' | |
| }, | |
| { | |
| name: 'Syros Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'JSY', | |
| municipality: 'Syros Island' | |
| }, | |
| { | |
| name: 'Sparti Airfield', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-J', | |
| iata_code: 'SPJ', | |
| municipality: 'Sparti' | |
| }, | |
| { | |
| name: 'Santorini Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-L', | |
| iata_code: 'JTR', | |
| municipality: 'Santorini Island' | |
| }, | |
| { | |
| name: 'Sitia Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-M', | |
| iata_code: 'JSH', | |
| municipality: 'Crete Island' | |
| }, | |
| { | |
| name: 'Skiros Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-H', | |
| iata_code: 'SKU', | |
| municipality: 'Skiros Island' | |
| }, | |
| { | |
| name: 'Thessaloniki Macedonia International Airport', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-B', | |
| iata_code: 'SKG', | |
| municipality: 'Thessaloniki' | |
| }, | |
| { | |
| name: 'Zakynthos International Airport Dionysios Solomos', | |
| iso_country: 'GR', | |
| country_name: 'Greece', | |
| iso_region: 'GR-F', | |
| iata_code: 'ZTH', | |
| municipality: 'Zakynthos' | |
| }, | |
| { | |
| name: 'Budapest Liszt Ferenc International Airport', | |
| iso_country: 'HU', | |
| country_name: 'Hungary', | |
| iso_region: 'HU-BU', | |
| iata_code: 'BUD', | |
| municipality: 'Budapest' | |
| }, | |
| { | |
| name: 'Debrecen International Airport', | |
| iso_country: 'HU', | |
| country_name: 'Hungary', | |
| iso_region: 'HU-HB', | |
| iata_code: 'DEB', | |
| municipality: 'Debrecen' | |
| }, | |
| { | |
| name: 'P\u00e9cs-Pog\u00e1ny Airport', | |
| iso_country: 'HU', | |
| country_name: 'Hungary', | |
| iso_region: 'HU-BA', | |
| iata_code: 'PEV', | |
| municipality: 'Pog\u00e1ny' | |
| }, | |
| { | |
| name: 'H\u00e9v\u00edz\u2013Balaton Airport', | |
| iso_country: 'HU', | |
| country_name: 'Hungary', | |
| iso_region: 'HU-ZA', | |
| iata_code: 'SOB', | |
| municipality: 'S\u00e1rmell\u00e9k' | |
| }, | |
| { | |
| name: "L'Aquila\u2013Preturo Airport", | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-65', | |
| iata_code: 'QAQ', | |
| municipality: "L'Aquila" | |
| }, | |
| { | |
| name: "Crotone Sant'Anna Pythagoras Airport", | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-78', | |
| iata_code: 'CRV', | |
| municipality: 'Isola di Capo Rizzuto (KR)' | |
| }, | |
| { | |
| name: 'Bari Karol Wojty\u0142a International Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-75', | |
| iata_code: 'BRI', | |
| municipality: 'Bari' | |
| }, | |
| { | |
| name: 'Foggia Gino Lisa Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-75', | |
| iata_code: 'FOG', | |
| municipality: 'Foggia (FG)' | |
| }, | |
| { | |
| name: 'Taranto-Grottaglie Marcello Arlotta Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-75', | |
| iata_code: 'TAR', | |
| municipality: 'Grottaglie' | |
| }, | |
| { | |
| name: 'Lecce Galatina Air Base / Galatina Fortunato Cesari Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-75', | |
| iata_code: 'LCC', | |
| municipality: 'Galatina (LE)' | |
| }, | |
| { | |
| name: 'Abruzzo Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-65', | |
| iata_code: 'PSR', | |
| municipality: 'Pescara' | |
| }, | |
| { | |
| name: 'Brindisi Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-75', | |
| iata_code: 'BDS', | |
| municipality: 'Brindisi' | |
| }, | |
| { | |
| name: "Lamezia Terme Sant'Eufemia International Airport", | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-78', | |
| iata_code: 'SUF', | |
| municipality: 'Lamezia Terme (CZ)' | |
| }, | |
| { | |
| name: 'Comiso Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-82', | |
| iata_code: 'CIY', | |
| municipality: 'Comiso' | |
| }, | |
| { | |
| name: 'Catania-Fontanarossa Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-82', | |
| iata_code: 'CTA', | |
| municipality: 'Catania' | |
| }, | |
| { | |
| name: 'Lampedusa Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-82', | |
| iata_code: 'LMP', | |
| municipality: 'Lampedusa' | |
| }, | |
| { | |
| name: 'Pantelleria Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-82', | |
| iata_code: 'PNL', | |
| municipality: 'Pantelleria (TP)' | |
| }, | |
| { | |
| name: 'Falcone\u2013Borsellino Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-82', | |
| iata_code: 'PMO', | |
| municipality: 'Palermo' | |
| }, | |
| { | |
| name: 'Reggio Calabria Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-78', | |
| iata_code: 'REG', | |
| municipality: 'Reggio Calabria' | |
| }, | |
| { | |
| name: 'Vincenzo Florio Airport Trapani-Birgi', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-82', | |
| iata_code: 'TPS', | |
| municipality: 'Trapani (TP)' | |
| }, | |
| { | |
| name: 'Sigonella Navy Air Base', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-82', | |
| iata_code: 'NSY', | |
| municipality: 'Sigonella (CT)' | |
| }, | |
| { | |
| name: "Belluno Arturo dell'Oro Airport", | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-34', | |
| iata_code: 'BLX', | |
| municipality: 'Belluno (BL)' | |
| }, | |
| { | |
| name: 'Ravenna Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-45', | |
| iata_code: 'RAN', | |
| municipality: 'Ravenna (RA)' | |
| }, | |
| { | |
| name: 'Alghero-Fertilia Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-88', | |
| iata_code: 'AHO', | |
| municipality: 'Alghero' | |
| }, | |
| { | |
| name: 'Decimomannu Air Base', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-88', | |
| iata_code: 'DCI', | |
| municipality: 'Decimomannu' | |
| }, | |
| { | |
| name: 'Cagliari Elmas Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-88', | |
| iata_code: 'CAG', | |
| municipality: 'Cagliari' | |
| }, | |
| { | |
| name: 'Olbia Costa Smeralda Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-88', | |
| iata_code: 'OLB', | |
| municipality: 'Olbia (SS)' | |
| }, | |
| { | |
| name: 'Oristano-Fenosu Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-88', | |
| iata_code: 'FNU', | |
| municipality: 'Oristano' | |
| }, | |
| { | |
| name: 'Tortol\u00ec Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-88', | |
| iata_code: 'TTB', | |
| municipality: 'Arbatax' | |
| }, | |
| { | |
| name: 'Milan Malpensa International Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-25', | |
| iata_code: 'MXP', | |
| municipality: 'Ferno (VA)' | |
| }, | |
| { | |
| name: 'Milan Bergamo Airport / Antonio Locatelli Air Base', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-25', | |
| iata_code: 'BGY', | |
| municipality: 'Orio al Serio (BG)' | |
| }, | |
| { | |
| name: 'Turin Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-21', | |
| iata_code: 'TRN', | |
| municipality: 'Caselle Torinese (TO)' | |
| }, | |
| { | |
| name: "Riviera Villanova d'Albenga International Airport", | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-42', | |
| iata_code: 'ALL', | |
| municipality: "Villanova d'Albenga (SV)" | |
| }, | |
| { | |
| name: 'Genoa Cristoforo Colombo Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-42', | |
| iata_code: 'GOA', | |
| municipality: 'Genova (GE)' | |
| }, | |
| { | |
| name: 'Milano Linate Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-25', | |
| iata_code: 'LIN', | |
| municipality: 'Segrate (MI)' | |
| }, | |
| { | |
| name: 'Parma Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-45', | |
| iata_code: 'PMF', | |
| municipality: 'Parma (PR)' | |
| }, | |
| { | |
| name: 'Aosta Corrado Gex Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-23', | |
| iata_code: 'AOT', | |
| municipality: 'Saint-Christophe (AO)' | |
| }, | |
| { | |
| name: 'Cuneo International Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-21', | |
| iata_code: 'CUF', | |
| municipality: 'Levaldigi (CN)' | |
| }, | |
| { | |
| name: 'Aviano Air Base', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-36', | |
| iata_code: 'AVB', | |
| municipality: 'Aviano (PN)' | |
| }, | |
| { | |
| name: 'Bolzano Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-32', | |
| iata_code: 'BZO', | |
| municipality: 'Bolzano (BZ)' | |
| }, | |
| { | |
| name: 'Udine-Campoformido Air Base', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-36', | |
| iata_code: 'UDN', | |
| municipality: 'Campoformido (UD)' | |
| }, | |
| { | |
| name: 'Bologna Guglielmo Marconi Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-45', | |
| iata_code: 'BLQ', | |
| municipality: 'Bologna' | |
| }, | |
| { | |
| name: 'Treviso Antonio Canova Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-34', | |
| iata_code: 'TSF', | |
| municipality: 'Treviso (TV)' | |
| }, | |
| { | |
| name: 'Forl\u00ec Luigi Ridolfi Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-45', | |
| iata_code: 'FRL', | |
| municipality: 'Forl\u00ec (FC)' | |
| }, | |
| { | |
| name: "Brescia Gabriele d'Annunzio Airport", | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-25', | |
| iata_code: 'VBS', | |
| municipality: 'Montichiari (BS)' | |
| }, | |
| { | |
| name: 'Trieste\u2013Friuli Venezia Giulia Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-36', | |
| iata_code: 'TRS', | |
| municipality: 'Ronchi dei Legionari (GO)' | |
| }, | |
| { | |
| name: 'Federico Fellini International Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-45', | |
| iata_code: 'RMI', | |
| municipality: 'Rimini (RN)' | |
| }, | |
| { | |
| name: 'Verona Villafranca Valerio Catullo Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-34', | |
| iata_code: 'VRN', | |
| municipality: 'Caselle (VR)' | |
| }, | |
| { | |
| name: 'Marche Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-57', | |
| iata_code: 'AOI', | |
| municipality: 'Falconara Marittima (AN)' | |
| }, | |
| { | |
| name: 'Venice Marco Polo Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-34', | |
| iata_code: 'VCE', | |
| municipality: 'Venezia (VE)' | |
| }, | |
| { | |
| name: 'Lucca-Tassignano Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-52', | |
| iata_code: 'LCV', | |
| municipality: 'Capannori (LU)' | |
| }, | |
| { | |
| name: 'Siena-Ampugnano Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-52', | |
| iata_code: 'SAY', | |
| municipality: 'Ampugnano (SI)' | |
| }, | |
| { | |
| name: 'Ciampino\u2013G. B. Pastine International Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-62', | |
| iata_code: 'CIA', | |
| municipality: 'Rome' | |
| }, | |
| { | |
| name: 'Rome\u2013Fiumicino Leonardo da Vinci International Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-62', | |
| iata_code: 'FCO', | |
| municipality: 'Rome' | |
| }, | |
| { | |
| name: "Salerno Costa d'Amalfi Airport", | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-72', | |
| iata_code: 'QSR', | |
| municipality: 'Salerno' | |
| }, | |
| { | |
| name: 'Marina di Campo Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-52', | |
| iata_code: 'EBA', | |
| municipality: "Campo nell'Elba (LI)" | |
| }, | |
| { | |
| name: 'Naples International Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-72', | |
| iata_code: 'NAP', | |
| municipality: 'Napoli' | |
| }, | |
| { | |
| name: 'Pisa International Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-52', | |
| iata_code: 'PSA', | |
| municipality: 'Pisa (PI)' | |
| }, | |
| { | |
| name: 'Florence Airport, Peretola', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-52', | |
| iata_code: 'FLR', | |
| municipality: 'Firenze (FI)' | |
| }, | |
| { | |
| name: 'Grosseto Corrado Baccarini Air Base / Grosseto Airport', | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-52', | |
| iata_code: 'GRS', | |
| municipality: 'Grosseto (GR)' | |
| }, | |
| { | |
| name: "Perugia San Francesco d'Assisi \u2013 Umbria International Airport", | |
| iso_country: 'IT', | |
| country_name: 'Italy', | |
| iso_region: 'IT-55', | |
| iata_code: 'PEG', | |
| municipality: 'Perugia (PG)' | |
| }, | |
| { | |
| name: 'Ljubljana Jo\u017ee Pu\u010dnik Airport', | |
| iso_country: 'SI', | |
| country_name: 'Slovenia', | |
| iso_region: 'SI-012', | |
| iata_code: 'LJU', | |
| municipality: 'Zgornji Brnik' | |
| }, | |
| { | |
| name: 'Maribor Edvard Rusjan Airport', | |
| iso_country: 'SI', | |
| country_name: 'Slovenia', | |
| iso_region: 'SI-160', | |
| iata_code: 'MBX', | |
| municipality: 'Orehova Vas' | |
| }, | |
| { | |
| name: 'Portoro\u017e Airport', | |
| iso_country: 'SI', | |
| country_name: 'Slovenia', | |
| iso_region: 'SI-090', | |
| iata_code: 'POW', | |
| municipality: 'Se\u010dovlje' | |
| }, | |
| { | |
| name: 'Nuwara Eliya (Lake Gregory) Waterdrome', | |
| iso_country: 'LK', | |
| country_name: 'Sri Lanka', | |
| iso_region: 'LK-2', | |
| iata_code: 'NUA', | |
| municipality: 'Nuwara Eliya' | |
| }, | |
| { | |
| name: 'Lekana Airport', | |
| iso_country: 'CG', | |
| country_name: 'Congo', | |
| iso_region: 'CG-14', | |
| iata_code: 'LKC', | |
| municipality: 'Lekana' | |
| }, | |
| { | |
| name: '\u010cesk\u00e9 Bud\u011bjovice South Bohemian Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-JC', | |
| iata_code: 'JCL', | |
| municipality: '\u010cesk\u00e9 Bud\u011bjovice' | |
| }, | |
| { | |
| name: 'Kunovice Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-ZL', | |
| iata_code: 'UHE', | |
| municipality: 'Uhersk\u00e9 Hradi\u0161t\u011b' | |
| }, | |
| { | |
| name: 'Karlovy Vary Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-KA', | |
| iata_code: 'KLV', | |
| municipality: 'Karlovy Vary' | |
| }, | |
| { | |
| name: 'Mnichovo Hradi\u0161t\u011b Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-ST', | |
| iata_code: 'HRA', | |
| municipality: 'Mnichovo Hradi\u0161t\u011b' | |
| }, | |
| { | |
| name: 'Ostrava Leos Jan\u00e1\u010dek Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-MO', | |
| iata_code: 'OSR', | |
| municipality: 'Mo\u0161nov' | |
| }, | |
| { | |
| name: 'Olomouc Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-OL', | |
| iata_code: 'OLO', | |
| municipality: 'Olomouc' | |
| }, | |
| { | |
| name: 'Pardubice Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-PA', | |
| iata_code: 'PED', | |
| municipality: 'Pardubice' | |
| }, | |
| { | |
| name: 'P\u0159erov Air Base', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-OL', | |
| iata_code: 'PRV', | |
| municipality: 'P\u0159erov' | |
| }, | |
| { | |
| name: 'V\u00e1clav Havel Airport Prague', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-PR', | |
| iata_code: 'PRG', | |
| municipality: 'Prague' | |
| }, | |
| { | |
| name: 'Brno-Tu\u0159any Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-JM', | |
| iata_code: 'BRQ', | |
| municipality: 'Brno' | |
| }, | |
| { | |
| name: 'Vodochody Airport', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-ST', | |
| iata_code: 'VOD', | |
| municipality: 'Vodochody' | |
| }, | |
| { | |
| name: 'Z\u00e1b\u0159eh Doln\u00ed Bene\u0161ov Airfield', | |
| iso_country: 'CZ', | |
| country_name: 'Czechia', | |
| iso_region: 'CZ-MO', | |
| iata_code: 'ZBE', | |
| municipality: 'Doln\u00ed Bene\u0161ov' | |
| }, | |
| { | |
| name: 'Ben Gurion International Airport', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-M', | |
| iata_code: 'TLV', | |
| municipality: 'Tel Aviv' | |
| }, | |
| { | |
| name: 'Beersheba (Teyman) Airport', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-D', | |
| iata_code: 'BEV', | |
| municipality: 'Beersheba' | |
| }, | |
| { | |
| name: 'Ramon International Airport', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-D', | |
| iata_code: 'ETM', | |
| municipality: 'Eilat' | |
| }, | |
| { | |
| name: 'Ein Yahav Airfield', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-D', | |
| iata_code: 'EIY', | |
| municipality: 'Sapir' | |
| }, | |
| { | |
| name: 'La Lima - Reginaldo Hammer Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-CR', | |
| iata_code: 'LLH', | |
| municipality: 'La Lima' | |
| }, | |
| { | |
| name: 'Haifa International Airport', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-HA', | |
| iata_code: 'HFA', | |
| municipality: 'Haifa' | |
| }, | |
| { | |
| name: 'Rosh Pina Airport', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-Z', | |
| iata_code: 'RPN', | |
| municipality: 'Rosh Pina' | |
| }, | |
| { | |
| name: 'Kiryat Shmona Airport', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-Z', | |
| iata_code: 'KSW', | |
| municipality: 'Kiryat Shmona' | |
| }, | |
| { | |
| name: 'Lissadell Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-WA', | |
| iata_code: 'LLL', | |
| municipality: 'Lissadell Station' | |
| }, | |
| { | |
| name: 'Bar Yehuda Airfield', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-D', | |
| iata_code: 'MTZ', | |
| municipality: 'Masada' | |
| }, | |
| { | |
| name: 'Nevatim Air Base', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-D', | |
| iata_code: 'VTM', | |
| municipality: 'Beersheba' | |
| }, | |
| { | |
| name: 'Ovda Airport', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-D', | |
| iata_code: 'VDA', | |
| municipality: 'Eilat' | |
| }, | |
| { | |
| name: 'Ramon Air Base', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-D', | |
| iata_code: 'MIP', | |
| municipality: 'Beersheba' | |
| }, | |
| { | |
| name: 'Yotvata Airfield', | |
| iso_country: 'IL', | |
| country_name: 'Israel', | |
| iso_region: 'IL-D', | |
| iata_code: 'YOT', | |
| municipality: 'Yotvata' | |
| }, | |
| { | |
| name: 'Malta International Airport', | |
| iso_country: 'MT', | |
| country_name: 'Malta', | |
| iso_region: 'MT-25', | |
| iata_code: 'MLA', | |
| municipality: 'Valletta' | |
| }, | |
| { | |
| name: 'Madivaru Airport', | |
| iso_country: 'MV', | |
| country_name: 'Maldives', | |
| iso_region: 'MV-03', | |
| iata_code: 'LMV', | |
| municipality: 'Naifaru' | |
| }, | |
| { | |
| name: 'Palma Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-P', | |
| iata_code: 'LMZ', | |
| municipality: 'Palma' | |
| }, | |
| { | |
| name: 'Lengbati Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'LNC', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Munbil Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'LNF', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Langimar Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'LNM', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Monaco Heliport', | |
| iso_country: 'MC', | |
| country_name: 'Monaco', | |
| iso_region: 'MC-U-A', | |
| iata_code: 'MCM', | |
| municipality: 'Fontvieille' | |
| }, | |
| { | |
| name: 'Sankt Anton am Arlberg Heliport', | |
| iso_country: 'AT', | |
| country_name: 'Austria', | |
| iso_region: 'AT-8', | |
| iata_code: 'ANT', | |
| municipality: 'Sankt Anton am Arlberg' | |
| }, | |
| { | |
| name: 'Hohenems-Dornbirn Airfield', | |
| iso_country: 'AT', | |
| country_name: 'Austria', | |
| iso_region: 'AT-8', | |
| iata_code: 'HOH', | |
| municipality: 'Hohenems' | |
| }, | |
| { | |
| name: 'Francisco Primo de Verdad y Ramos Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-JAL', | |
| iata_code: 'LOM', | |
| municipality: 'Lagos de Moreno' | |
| }, | |
| { | |
| name: 'Lowe AHP (Fort Rucker) Heliport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AL', | |
| iata_code: 'LOR', | |
| municipality: 'Fort Rucker Ozark' | |
| }, | |
| { | |
| name: 'Graz Airport', | |
| iso_country: 'AT', | |
| country_name: 'Austria', | |
| iso_region: 'AT-6', | |
| iata_code: 'GRZ', | |
| municipality: 'Feldkirchen bei Graz' | |
| }, | |
| { | |
| name: 'Innsbruck Airport', | |
| iso_country: 'AT', | |
| country_name: 'Austria', | |
| iso_region: 'AT-7', | |
| iata_code: 'INN', | |
| municipality: 'Innsbruck' | |
| }, | |
| { | |
| name: 'Klagenfurt Airport', | |
| iso_country: 'AT', | |
| country_name: 'Austria', | |
| iso_region: 'AT-2', | |
| iata_code: 'KLU', | |
| municipality: 'Klagenfurt am W\u00f6rthersee' | |
| }, | |
| { | |
| name: 'Linz-H\u00f6rsching Airport / Vogler Air Base', | |
| iso_country: 'AT', | |
| country_name: 'Austria', | |
| iso_region: 'AT-4', | |
| iata_code: 'LNZ', | |
| municipality: 'Linz' | |
| }, | |
| { | |
| name: 'Salzburg Airport', | |
| iso_country: 'AT', | |
| country_name: 'Austria', | |
| iso_region: 'AT-5', | |
| iata_code: 'SZG', | |
| municipality: 'Salzburg' | |
| }, | |
| { | |
| name: 'Vienna International Airport', | |
| iso_country: 'AT', | |
| country_name: 'Austria', | |
| iso_region: 'AT-9', | |
| iata_code: 'VIE', | |
| municipality: 'Vienna' | |
| }, | |
| { | |
| name: 'Alverca Air Base', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-11', | |
| iata_code: 'AVR', | |
| municipality: 'Vila Franca de Xira' | |
| }, | |
| { | |
| name: 'Santa Maria Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'SMA', | |
| municipality: 'Vila do Porto' | |
| }, | |
| { | |
| name: 'Bragan\u00e7a Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-04', | |
| iata_code: 'BGC', | |
| municipality: 'Bragan\u00e7a' | |
| }, | |
| { | |
| name: 'Beja Airport / Airbase', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-02', | |
| iata_code: 'BYJ', | |
| municipality: 'Beja' | |
| }, | |
| { | |
| name: 'Braga Municipal Aerodrome', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-03', | |
| iata_code: 'BGZ', | |
| municipality: 'Braga' | |
| }, | |
| { | |
| name: 'Aerodromo de Chaves', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-17', | |
| iata_code: 'CHV', | |
| municipality: 'Chaves' | |
| }, | |
| { | |
| name: 'Aerodromo Municipal de Coimbra', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-06', | |
| iata_code: 'CBP', | |
| municipality: 'Coimbra' | |
| }, | |
| { | |
| name: 'Corvo Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'CVU', | |
| municipality: 'Corvo' | |
| }, | |
| { | |
| name: 'Cascais Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-11', | |
| iata_code: 'CAT', | |
| municipality: 'Cascais' | |
| }, | |
| { | |
| name: 'Flores Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'FLW', | |
| municipality: 'Santa Cruz das Flores' | |
| }, | |
| { | |
| name: 'Faro Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-08', | |
| iata_code: 'FAO', | |
| municipality: 'Faro' | |
| }, | |
| { | |
| name: 'Graciosa Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'GRW', | |
| municipality: 'Santa Cruz da Graciosa' | |
| }, | |
| { | |
| name: 'Horta Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'HOR', | |
| municipality: 'Horta' | |
| }, | |
| { | |
| name: 'Lajes Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'TER', | |
| municipality: 'Praia da Vit\u00f3ria' | |
| }, | |
| { | |
| name: 'Madeira International Airport Cristiano Ronaldo', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-30', | |
| iata_code: 'FNC', | |
| municipality: 'Funchal' | |
| }, | |
| { | |
| name: 'Monte Real Air Base', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-10', | |
| iata_code: 'QLR', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Jo\u00e3o Paulo II Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'PDL', | |
| municipality: 'Ponta Delgada' | |
| }, | |
| { | |
| name: 'Pico Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'PIX', | |
| municipality: 'Pico Island' | |
| }, | |
| { | |
| name: 'Portim\u00e3o Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-08', | |
| iata_code: 'PRM', | |
| municipality: 'Portim\u00e3o' | |
| }, | |
| { | |
| name: 'Francisco de S\u00e1 Carneiro Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-13', | |
| iata_code: 'OPO', | |
| municipality: 'Porto' | |
| }, | |
| { | |
| name: 'Porto Santo Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-30', | |
| iata_code: 'PXO', | |
| municipality: 'Vila Baleira' | |
| }, | |
| { | |
| name: 'Humberto Delgado Airport (Lisbon Portela Airport)', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-11', | |
| iata_code: 'LIS', | |
| municipality: 'Lisbon' | |
| }, | |
| { | |
| name: 'S\u00e3o Jorge Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-20', | |
| iata_code: 'SJZ', | |
| municipality: 'Velas' | |
| }, | |
| { | |
| name: 'Vila Real Airport', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-17', | |
| iata_code: 'VRL', | |
| municipality: 'Vila Real' | |
| }, | |
| { | |
| name: 'Aerodromo Goncalves Lobato (Viseu Airport)', | |
| iso_country: 'PT', | |
| country_name: 'Portugal', | |
| iso_region: 'PT-18', | |
| iata_code: 'VSE', | |
| municipality: 'Viseu' | |
| }, | |
| { | |
| name: 'Banja Luka International Airport', | |
| iso_country: 'BA', | |
| country_name: 'Bosnia and Herzegovina', | |
| iso_region: 'BA-SRP', | |
| iata_code: 'BNX', | |
| municipality: 'Banja Luka' | |
| }, | |
| { | |
| name: 'Mostar International Airport', | |
| iso_country: 'BA', | |
| country_name: 'Bosnia and Herzegovina', | |
| iso_region: 'BA-BIH', | |
| iata_code: 'OMO', | |
| municipality: 'Mostar' | |
| }, | |
| { | |
| name: 'Sarajevo International Airport', | |
| iso_country: 'BA', | |
| country_name: 'Bosnia and Herzegovina', | |
| iso_region: 'BA-BIH', | |
| iata_code: 'SJJ', | |
| municipality: 'Sarajevo' | |
| }, | |
| { | |
| name: 'Tuzla International Airport', | |
| iso_country: 'BA', | |
| country_name: 'Bosnia and Herzegovina', | |
| iso_region: 'BA-BIH', | |
| iata_code: 'TZL', | |
| municipality: 'Dubrave Gornje' | |
| }, | |
| { | |
| name: 'Arad International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-AR', | |
| iata_code: 'ARW', | |
| municipality: 'Arad' | |
| }, | |
| { | |
| name: 'Bac\u0103u George Enescu International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-BC', | |
| iata_code: 'BCM', | |
| municipality: 'Bac\u0103u' | |
| }, | |
| { | |
| name: 'Maramure\u0219 International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-MM', | |
| iata_code: 'BAY', | |
| municipality: 'T\u0103u\u021bii-M\u0103gher\u0103u\u0219' | |
| }, | |
| { | |
| name: 'Bucharest B\u0103neasa Aurel Vlaicu International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-B', | |
| iata_code: 'BBU', | |
| municipality: 'Bucharest' | |
| }, | |
| { | |
| name: 'Mihail Kog\u0103lniceanu International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-CT', | |
| iata_code: 'CND', | |
| municipality: 'Mihail Kog\u0103lniceanu' | |
| }, | |
| { | |
| name: 'Cluj Avram Iancu International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-CJ', | |
| iata_code: 'CLJ', | |
| municipality: 'Cluj-Napoca' | |
| }, | |
| { | |
| name: 'Caransebe\u015f Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-CS', | |
| iata_code: 'CSB', | |
| municipality: 'Caransebe\u015f' | |
| }, | |
| { | |
| name: 'Craiova International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-DJ', | |
| iata_code: 'CRA', | |
| municipality: 'Craiova' | |
| }, | |
| { | |
| name: 'Ia\u015fi Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-IS', | |
| iata_code: 'IAS', | |
| municipality: 'Ia\u015fi' | |
| }, | |
| { | |
| name: 'Oradea International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-BH', | |
| iata_code: 'OMR', | |
| municipality: 'Oradea' | |
| }, | |
| { | |
| name: 'Bucharest Henri Coand\u0103 International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-IF', | |
| iata_code: 'OTP', | |
| municipality: 'Otopeni' | |
| }, | |
| { | |
| name: 'Bra\u0219ov-Ghimbav International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-BV', | |
| iata_code: 'GHV', | |
| municipality: 'Bra\u0219ov (Ghimbav)' | |
| }, | |
| { | |
| name: 'Sibiu International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-SB', | |
| iata_code: 'SBZ', | |
| municipality: 'Sibiu' | |
| }, | |
| { | |
| name: 'Satu Mare International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-SM', | |
| iata_code: 'SUJ', | |
| municipality: 'Satu Mare' | |
| }, | |
| { | |
| name: 'Suceava Stefan cel Mare Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-SV', | |
| iata_code: 'SCV', | |
| municipality: 'Suceava' | |
| }, | |
| { | |
| name: 'Tulcea Danube Delta Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-TL', | |
| iata_code: 'TCE', | |
| municipality: 'Mihail Kog\u0103lniceanu' | |
| }, | |
| { | |
| name: 'T\u00e2rgu Mure\u015f Transilvania International Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-MS', | |
| iata_code: 'TGM', | |
| municipality: 'Recea' | |
| }, | |
| { | |
| name: 'Timi\u015foara Traian Vuia Airport', | |
| iso_country: 'RO', | |
| country_name: 'Romania', | |
| iso_region: 'RO-TM', | |
| iata_code: 'TSR', | |
| municipality: 'Timi\u015foara' | |
| }, | |
| { | |
| name: 'Geneva Cointrin International Airport', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-GE', | |
| iata_code: 'GVA', | |
| municipality: 'Geneva' | |
| }, | |
| { | |
| name: 'Sion Airport', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-VS', | |
| iata_code: 'SIR', | |
| municipality: 'Sion' | |
| }, | |
| { | |
| name: 'Emmen Air Base', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-LU', | |
| iata_code: 'EML', | |
| municipality: 'Emmen' | |
| }, | |
| { | |
| name: 'Payerne Air Base', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-FR', | |
| iata_code: 'VIP', | |
| municipality: 'Payerne' | |
| }, | |
| { | |
| name: 'Lugano Airport', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-TI', | |
| iata_code: 'LUG', | |
| municipality: 'Agno' | |
| }, | |
| { | |
| name: 'Bern Airport', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-BE', | |
| iata_code: 'BRN', | |
| municipality: 'Bern' | |
| }, | |
| { | |
| name: 'Buochs Airport', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-NW', | |
| iata_code: 'BXO', | |
| municipality: 'Buochs' | |
| }, | |
| { | |
| name: 'Z\u00fcrich Airport', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-ZH', | |
| iata_code: 'ZRH', | |
| municipality: 'Zurich' | |
| }, | |
| { | |
| name: 'Sankt Gallen Altenrhein Airport', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-SG', | |
| iata_code: 'ACH', | |
| municipality: 'St. Gallen' | |
| }, | |
| { | |
| name: 'Samedan Airport', | |
| iso_country: 'CH', | |
| country_name: 'Switzerland', | |
| iso_region: 'CH-GR', | |
| iata_code: 'SMV', | |
| municipality: 'Samedan' | |
| }, | |
| { | |
| name: 'G\u00f6k\u00e7eada Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-17', | |
| iata_code: 'GKD', | |
| municipality: 'G\u00f6k\u00e7eada' | |
| }, | |
| { | |
| name: 'Esenbo\u011fa International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-06', | |
| iata_code: 'ESB', | |
| municipality: 'Ankara' | |
| }, | |
| { | |
| name: 'Etimesgut Air Base', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-06', | |
| iata_code: 'ANK', | |
| municipality: 'Ankara' | |
| }, | |
| { | |
| name: 'Adana \u015eakirpa\u015fa Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-01', | |
| iata_code: 'ADA', | |
| municipality: 'Seyhan' | |
| }, | |
| { | |
| name: '\u0130ncirlik Air Base', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-01', | |
| iata_code: 'UAB', | |
| municipality: 'Sar\u0131\u00e7am' | |
| }, | |
| { | |
| name: 'Afyon Air Base', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-03', | |
| iata_code: 'AFY', | |
| municipality: 'Afyonkarahisar' | |
| }, | |
| { | |
| name: 'Antalya International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-07', | |
| iata_code: 'AYT', | |
| municipality: 'Antalya' | |
| }, | |
| { | |
| name: 'Gaziantep International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-27', | |
| iata_code: 'GZT', | |
| municipality: 'Gaziantep' | |
| }, | |
| { | |
| name: 'Kastamonu Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-37', | |
| iata_code: 'KFS', | |
| municipality: 'Kastamonu' | |
| }, | |
| { | |
| name: 'Konya Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-42', | |
| iata_code: 'KYA', | |
| municipality: 'Konya' | |
| }, | |
| { | |
| name: 'Amasya Merzifon Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-05', | |
| iata_code: 'MZH', | |
| municipality: 'Amasya' | |
| }, | |
| { | |
| name: 'Sivas Nuri Demira\u011f Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-58', | |
| iata_code: 'VAS', | |
| municipality: 'Sivas' | |
| }, | |
| { | |
| name: 'Zonguldak \u00c7aycuma Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-67', | |
| iata_code: 'ONQ', | |
| municipality: 'Zonguldak' | |
| }, | |
| { | |
| name: 'Malatya Erha\u00e7 Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-44', | |
| iata_code: 'MLX', | |
| municipality: 'Malatya' | |
| }, | |
| { | |
| name: 'Kayseri Erkilet Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-38', | |
| iata_code: 'ASR', | |
| municipality: 'Kayseri' | |
| }, | |
| { | |
| name: 'Tokat Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-60', | |
| iata_code: 'TJK', | |
| municipality: 'Tokat' | |
| }, | |
| { | |
| name: '\u00c7ardak Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-20', | |
| iata_code: 'DNZ', | |
| municipality: 'Denizli' | |
| }, | |
| { | |
| name: 'Nev\u015fehir Kapadokya Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-50', | |
| iata_code: 'NAV', | |
| municipality: 'Nev\u015fehir' | |
| }, | |
| { | |
| name: '\u0130stanbul Atat\u00fcrk Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-34', | |
| iata_code: 'ISL', | |
| municipality: 'Bak\u0131rk\u00f6y, Istanbul' | |
| }, | |
| { | |
| name: 'Ayd\u0131n \u00c7\u0131ld\u0131r Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-09', | |
| iata_code: 'CII', | |
| municipality: 'Ayd\u0131n' | |
| }, | |
| { | |
| name: 'Bal\u0131kesir Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-10', | |
| iata_code: 'BZI', | |
| municipality: 'Bal\u0131kesir' | |
| }, | |
| { | |
| name: 'Band\u0131rma Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-10', | |
| iata_code: 'BDM', | |
| municipality: 'Band\u0131rma' | |
| }, | |
| { | |
| name: '\u00c7anakkale Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-17', | |
| iata_code: 'CKZ', | |
| municipality: '\u00c7anakkale' | |
| }, | |
| { | |
| name: 'Eski\u015fehir Air Base', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-26', | |
| iata_code: 'ESK', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Adnan Menderes International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-35', | |
| iata_code: 'ADB', | |
| municipality: 'Gaziemir' | |
| }, | |
| { | |
| name: '\u00c7i\u011fli Airbase', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-35', | |
| iata_code: 'IGL', | |
| municipality: '\u00c7i\u011fli' | |
| }, | |
| { | |
| name: 'U\u015fak Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-64', | |
| iata_code: 'USQ', | |
| municipality: 'U\u015fak' | |
| }, | |
| { | |
| name: 'Cengiz Topel Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-41', | |
| iata_code: 'KCO', | |
| municipality: 'Kartepe' | |
| }, | |
| { | |
| name: 'Bursa Yeni\u015fehir Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-16', | |
| iata_code: 'YEI', | |
| municipality: 'Yeni\u015fehir' | |
| }, | |
| { | |
| name: 'Dalaman International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-48', | |
| iata_code: 'DLM', | |
| municipality: 'Dalaman' | |
| }, | |
| { | |
| name: 'Tekirda\u011f \u00c7orlu Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-59', | |
| iata_code: 'TEQ', | |
| municipality: '\u00c7orlu' | |
| }, | |
| { | |
| name: 'Bodrum-Ims\u0131k Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-48', | |
| iata_code: 'BXN', | |
| municipality: 'Ims\u0131k' | |
| }, | |
| { | |
| name: 'Anadolu Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-26', | |
| iata_code: 'AOE', | |
| municipality: 'Eski\u015fehir' | |
| }, | |
| { | |
| name: 'Zafer Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-43', | |
| iata_code: 'KZR', | |
| municipality: 'Alt\u0131nta\u015f' | |
| }, | |
| { | |
| name: 'Elaz\u0131\u011f Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-23', | |
| iata_code: 'EZS', | |
| municipality: 'Elaz\u0131\u011f' | |
| }, | |
| { | |
| name: 'Ordu\u2013Giresun Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-52', | |
| iata_code: 'OGU', | |
| municipality: 'Ordu' | |
| }, | |
| { | |
| name: 'Diyarbak\u0131r Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-21', | |
| iata_code: 'DIY', | |
| municipality: 'Diyarbak\u0131r' | |
| }, | |
| { | |
| name: 'Erzincan Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-24', | |
| iata_code: 'ERC', | |
| municipality: 'Erzincan' | |
| }, | |
| { | |
| name: 'Erzurum International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-25', | |
| iata_code: 'ERZ', | |
| municipality: 'Erzurum' | |
| }, | |
| { | |
| name: 'Kars Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-36', | |
| iata_code: 'KSY', | |
| municipality: 'Kars' | |
| }, | |
| { | |
| name: 'Trabzon International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-61', | |
| iata_code: 'TZX', | |
| municipality: 'Trabzon' | |
| }, | |
| { | |
| name: 'Van Ferit Melen Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-65', | |
| iata_code: 'VAN', | |
| municipality: 'Van' | |
| }, | |
| { | |
| name: 'Batman Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-72', | |
| iata_code: 'BAL', | |
| municipality: 'Batman' | |
| }, | |
| { | |
| name: 'Mu\u015f Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-49', | |
| iata_code: 'MSR', | |
| municipality: 'Mu\u015f' | |
| }, | |
| { | |
| name: 'Siirt Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-56', | |
| iata_code: 'SXZ', | |
| municipality: 'Siirt' | |
| }, | |
| { | |
| name: 'Sinop Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-57', | |
| iata_code: 'NOP', | |
| municipality: 'Sinop' | |
| }, | |
| { | |
| name: 'Kahramanmara\u015f Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-46', | |
| iata_code: 'KCM', | |
| municipality: 'Kahramanmara\u015f' | |
| }, | |
| { | |
| name: 'A\u011fr\u0131 Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-04', | |
| iata_code: 'AJI', | |
| municipality: 'A\u011fr\u0131' | |
| }, | |
| { | |
| name: 'Ad\u0131yaman Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-02', | |
| iata_code: 'ADF', | |
| municipality: 'Ad\u0131yaman' | |
| }, | |
| { | |
| name: 'Mardin Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-47', | |
| iata_code: 'MQM', | |
| municipality: 'Mardin' | |
| }, | |
| { | |
| name: '\u015eanl\u0131urfa GAP Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-63', | |
| iata_code: 'GNY', | |
| municipality: '\u015eanl\u0131urfa' | |
| }, | |
| { | |
| name: 'I\u011fd\u0131r Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-76', | |
| iata_code: 'IGD', | |
| municipality: 'I\u011fd\u0131r' | |
| }, | |
| { | |
| name: '\u015e\u0131rnak \u015eerafettin El\u00e7i Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-73', | |
| iata_code: 'NKT', | |
| municipality: '\u015e\u0131rnak' | |
| }, | |
| { | |
| name: 'Hakkari Y\u00fcksekova Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-30', | |
| iata_code: 'YKO', | |
| municipality: 'Hakkari' | |
| }, | |
| { | |
| name: 'Hatay Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-31', | |
| iata_code: 'HTY', | |
| municipality: 'Antakya' | |
| }, | |
| { | |
| name: 'Leitre Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'LTF', | |
| municipality: 'Leitre' | |
| }, | |
| { | |
| name: 'Sel\u00e7uk Efes Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-35', | |
| iata_code: 'IZM', | |
| municipality: 'Sel\u00e7uk' | |
| }, | |
| { | |
| name: 'S\u00fcleyman Demirel International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-32', | |
| iata_code: 'ISE', | |
| municipality: 'Isparta' | |
| }, | |
| { | |
| name: 'Bal\u0131kesir Koca Seyit Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-10', | |
| iata_code: 'EDO', | |
| municipality: 'Edremit' | |
| }, | |
| { | |
| name: 'Milas Bodrum International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-48', | |
| iata_code: 'BJV', | |
| municipality: 'Bodrum' | |
| }, | |
| { | |
| name: 'Gazipa\u015fa-Alanya Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-07', | |
| iata_code: 'GZP', | |
| municipality: 'Gazipa\u015fa' | |
| }, | |
| { | |
| name: 'Samsun-\u00c7ar\u015famba Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-55', | |
| iata_code: 'SZF', | |
| municipality: 'Samsun' | |
| }, | |
| { | |
| name: 'Istanbul Sabiha G\u00f6k\u00e7en International Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-34', | |
| iata_code: 'SAW', | |
| municipality: 'Pendik, Istanbul' | |
| }, | |
| { | |
| name: '\u0130stanbul Airport', | |
| iso_country: 'TR', | |
| country_name: 'T\u00fcrkiye', | |
| iso_region: 'TR-34', | |
| iata_code: 'IST', | |
| municipality: 'Arnavutk\u00f6y, Istanbul' | |
| }, | |
| { | |
| name: 'B\u0103l\u021bi International Airport', | |
| iso_country: 'MD', | |
| country_name: 'Moldova, Republic of', | |
| iso_region: 'MD-RS', | |
| iata_code: 'BZY', | |
| municipality: 'B\u0103l\u021bi' | |
| }, | |
| { | |
| name: 'Chi\u015fin\u0103u International Airport', | |
| iso_country: 'MD', | |
| country_name: 'Moldova, Republic of', | |
| iso_region: 'MD-CU', | |
| iata_code: 'RMO', | |
| municipality: 'Chi\u015fin\u0103u' | |
| }, | |
| { | |
| name: 'Lebak Rural Airport', | |
| iso_country: 'PH', | |
| country_name: 'Philippines', | |
| iso_region: 'PH-SUK', | |
| iata_code: 'LWA', | |
| municipality: 'Lebak' | |
| }, | |
| { | |
| name: 'Ohrid St. Paul the Apostle Airport', | |
| iso_country: 'MK', | |
| country_name: 'North Macedonia', | |
| iso_region: 'MK-003', | |
| iata_code: 'OHD', | |
| municipality: 'Ohrid' | |
| }, | |
| { | |
| name: 'Skopje International Airport', | |
| iso_country: 'MK', | |
| country_name: 'North Macedonia', | |
| iso_region: 'MK-008', | |
| iata_code: 'SKP', | |
| municipality: 'Ilinden' | |
| }, | |
| { | |
| name: 'Gibraltar Airport', | |
| iso_country: 'GI', | |
| country_name: 'Gibraltar', | |
| iso_region: 'GI-U-A', | |
| iata_code: 'GIB', | |
| municipality: 'Gibraltar' | |
| }, | |
| { | |
| name: 'Brak Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-SH', | |
| iata_code: 'BCQ', | |
| municipality: 'Brak' | |
| }, | |
| { | |
| name: 'Martuba Air Base', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-DR', | |
| iata_code: 'DNF', | |
| municipality: 'Martuba' | |
| }, | |
| { | |
| name: 'Misrata International Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-MI', | |
| iata_code: 'MRA', | |
| municipality: 'Misrata' | |
| }, | |
| { | |
| name: 'Ubari Airport', | |
| iso_country: 'LY', | |
| country_name: 'Libya', | |
| iso_region: 'LY-WD', | |
| iata_code: 'QUB', | |
| municipality: 'Ubari' | |
| }, | |
| { | |
| name: 'Ponikve Airport', | |
| iso_country: 'RS', | |
| country_name: 'Serbia', | |
| iso_region: 'RS-16', | |
| iata_code: 'UZC', | |
| municipality: 'Stapari' | |
| }, | |
| { | |
| name: 'Belgrade Nikola Tesla Airport', | |
| iso_country: 'RS', | |
| country_name: 'Serbia', | |
| iso_region: 'RS-00', | |
| iata_code: 'BEG', | |
| municipality: 'Belgrade' | |
| }, | |
| { | |
| name: 'Berane Airport', | |
| iso_country: 'ME', | |
| country_name: 'Montenegro', | |
| iso_region: 'ME-03', | |
| iata_code: 'IVG', | |
| municipality: 'Berane' | |
| }, | |
| { | |
| name: 'Batajnica Air Base', | |
| iso_country: 'RS', | |
| country_name: 'Serbia', | |
| iso_region: 'RS-00', | |
| iata_code: 'BJY', | |
| municipality: 'Zemun' | |
| }, | |
| { | |
| name: 'Morava Airport', | |
| iso_country: 'RS', | |
| country_name: 'Serbia', | |
| iso_region: 'RS-18', | |
| iata_code: 'KVO', | |
| municipality: 'Kraljevo' | |
| }, | |
| { | |
| name: 'Ni\u0161 Constantine the Great Airport', | |
| iso_country: 'RS', | |
| country_name: 'Serbia', | |
| iso_region: 'RS-20', | |
| iata_code: 'INI', | |
| municipality: 'Ni\u0161' | |
| }, | |
| { | |
| name: 'Podgorica Airport / Podgorica Golubovci Airbase', | |
| iso_country: 'ME', | |
| country_name: 'Montenegro', | |
| iso_region: 'ME-16', | |
| iata_code: 'TGD', | |
| municipality: 'Podgorica' | |
| }, | |
| { | |
| name: 'Tivat Airport', | |
| iso_country: 'ME', | |
| country_name: 'Montenegro', | |
| iso_region: 'ME-19', | |
| iata_code: 'TIV', | |
| municipality: 'Tivat' | |
| }, | |
| { | |
| name: 'Langzhong Gucheng Airport', | |
| iso_country: 'CN', | |
| country_name: 'China', | |
| iso_region: 'CN-51', | |
| iata_code: 'LZG', | |
| municipality: 'Nanchong (Langzhong)' | |
| }, | |
| { | |
| name: 'M. R. \u0160tef\u00e1nik Airport', | |
| iso_country: 'SK', | |
| country_name: 'Slovakia', | |
| iso_region: 'SK-BL', | |
| iata_code: 'BTS', | |
| municipality: 'Bratislava' | |
| }, | |
| { | |
| name: 'Ko\u0161ice International Airport', | |
| iso_country: 'SK', | |
| country_name: 'Slovakia', | |
| iso_region: 'SK-KI', | |
| iata_code: 'KSC', | |
| municipality: 'Ko\u0161ice' | |
| }, | |
| { | |
| name: 'Lu\u010denec Airfield', | |
| iso_country: 'SK', | |
| country_name: 'Slovakia', | |
| iso_region: 'SK-BC', | |
| iata_code: 'LUE', | |
| municipality: 'Lu\u010denec' | |
| }, | |
| { | |
| name: 'Pie\u0161\u0165any Airport', | |
| iso_country: 'SK', | |
| country_name: 'Slovakia', | |
| iso_region: 'SK-TA', | |
| iata_code: 'PZY', | |
| municipality: 'Pie\u0161\u0165any' | |
| }, | |
| { | |
| name: 'Pre\u0161ov Air Base', | |
| iso_country: 'SK', | |
| country_name: 'Slovakia', | |
| iso_region: 'SK-PV', | |
| iata_code: 'POV', | |
| municipality: 'Pre\u0161ov' | |
| }, | |
| { | |
| name: 'Slia\u010d Airport', | |
| iso_country: 'SK', | |
| country_name: 'Slovakia', | |
| iso_region: 'SK-BC', | |
| iata_code: 'SLD', | |
| municipality: 'Slia\u010d' | |
| }, | |
| { | |
| name: 'Poprad-Tatry Airport', | |
| iso_country: 'SK', | |
| country_name: 'Slovakia', | |
| iso_region: 'SK-PV', | |
| iata_code: 'TAT', | |
| municipality: 'Poprad' | |
| }, | |
| { | |
| name: '\u017dilina-Doln\u00fd Hri\u010dov Airport', | |
| iso_country: 'SK', | |
| country_name: 'Slovakia', | |
| iso_region: 'SK-ZI', | |
| iata_code: 'ILZ', | |
| municipality: 'Doln\u00fd Hri\u010dov' | |
| }, | |
| { | |
| name: 'Drummond Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MT', | |
| iata_code: 'DRU', | |
| municipality: 'Drummond' | |
| }, | |
| { | |
| name: 'Guelmim Airport', | |
| iso_country: 'MA', | |
| country_name: 'Morocco', | |
| iso_region: 'MA-TIZ', | |
| iata_code: 'GLN', | |
| municipality: 'Guelmim' | |
| }, | |
| { | |
| name: 'Ware Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-MA', | |
| iata_code: 'UWA', | |
| municipality: 'Ware' | |
| }, | |
| { | |
| name: 'Mamai Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-CPM', | |
| iata_code: 'MAP', | |
| municipality: 'Mamai' | |
| }, | |
| { | |
| name: 'JAGS McCartney International Airport', | |
| iso_country: 'TC', | |
| country_name: 'Turks and Caicos Islands', | |
| iso_region: 'TC-GT', | |
| iata_code: 'GDT', | |
| municipality: 'Cockburn Town' | |
| }, | |
| { | |
| name: 'Middle Caicos Airport', | |
| iso_country: 'TC', | |
| country_name: 'Turks and Caicos Islands', | |
| iso_region: 'TC-MC', | |
| iata_code: 'MDS', | |
| municipality: 'Middle Caicos' | |
| }, | |
| { | |
| name: 'North Caicos Airport', | |
| iso_country: 'TC', | |
| country_name: 'Turks and Caicos Islands', | |
| iso_region: 'TC-NC', | |
| iata_code: 'NCA', | |
| municipality: 'North Caicos' | |
| }, | |
| { | |
| name: 'Pine Cay Airport', | |
| iso_country: 'TC', | |
| country_name: 'Turks and Caicos Islands', | |
| iso_region: 'TC-PN', | |
| iata_code: 'PIC', | |
| municipality: 'Pine Cay' | |
| }, | |
| { | |
| name: 'Providenciales International Airport', | |
| iso_country: 'TC', | |
| country_name: 'Turks and Caicos Islands', | |
| iso_region: 'TC-PR', | |
| iata_code: 'PLS', | |
| municipality: 'Providenciales' | |
| }, | |
| { | |
| name: 'South Caicos Airport', | |
| iso_country: 'TC', | |
| country_name: 'Turks and Caicos Islands', | |
| iso_region: 'TC-SC', | |
| iata_code: 'XSC', | |
| municipality: 'South Caicos' | |
| }, | |
| { | |
| name: 'Salt Cay Airport', | |
| iso_country: 'TC', | |
| country_name: 'Turks and Caicos Islands', | |
| iso_region: 'TC-SL', | |
| iata_code: 'SLX', | |
| municipality: 'Salt Cay' | |
| }, | |
| { | |
| name: 'Maria Montez International Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-04', | |
| iata_code: 'BRX', | |
| municipality: 'Barahona' | |
| }, | |
| { | |
| name: 'Cabo Rojo Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-16', | |
| iata_code: 'CBJ', | |
| municipality: 'Cabo Rojo' | |
| }, | |
| { | |
| name: 'Saman\u00e1 El Catey International Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-20', | |
| iata_code: 'AZS', | |
| municipality: 'Samana' | |
| }, | |
| { | |
| name: 'Constanza - Expedici\u00f3n 14 de Junio National Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-13', | |
| iata_code: 'COZ', | |
| municipality: 'Costanza' | |
| }, | |
| { | |
| name: 'La Isabela International Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-01', | |
| iata_code: 'JBQ', | |
| municipality: 'La Isabela' | |
| }, | |
| { | |
| name: 'Casa De Campo International Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-12', | |
| iata_code: 'LRM', | |
| municipality: 'La Romana' | |
| }, | |
| { | |
| name: 'Punta Cana International Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-11', | |
| iata_code: 'PUJ', | |
| municipality: 'Punta Cana' | |
| }, | |
| { | |
| name: 'Gregorio Luperon International Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-18', | |
| iata_code: 'POP', | |
| municipality: 'Puerto Plata' | |
| }, | |
| { | |
| name: 'Las Am\u00e9ricas International Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-01', | |
| iata_code: 'SDQ', | |
| municipality: 'Santo Domingo' | |
| }, | |
| { | |
| name: 'Cibao International Airport', | |
| iso_country: 'DO', | |
| country_name: 'Dominican Republic', | |
| iso_region: 'DO-25', | |
| iata_code: 'STI', | |
| municipality: 'Santiago' | |
| }, | |
| { | |
| name: 'M\u00e9douneu Airport', | |
| iso_country: 'GQ', | |
| country_name: 'Equatorial Guinea', | |
| iso_region: 'GQ-CS', | |
| iata_code: 'MDV', | |
| municipality: 'M\u00e9douneu, Gabon' | |
| }, | |
| { | |
| name: 'Loring International Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-ME', | |
| iata_code: 'LIZ', | |
| municipality: 'Limestone' | |
| }, | |
| { | |
| name: 'Melfi Airport', | |
| iso_country: 'TD', | |
| country_name: 'Chad', | |
| iso_region: 'TD-GR', | |
| iata_code: 'MEF', | |
| municipality: 'Melfi' | |
| }, | |
| { | |
| name: 'Ambohibary Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-A', | |
| iata_code: 'OHB', | |
| municipality: 'Moramanga' | |
| }, | |
| { | |
| name: 'Ankokoambo Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-M', | |
| iata_code: 'NKO', | |
| municipality: 'Ankokoambo' | |
| }, | |
| { | |
| name: 'Relais de la Reine Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-U-A', | |
| iata_code: 'RLR', | |
| municipality: 'Isalo' | |
| }, | |
| { | |
| name: 'Doany Airport', | |
| iso_country: 'MG', | |
| country_name: 'Madagascar', | |
| iso_region: 'MG-D', | |
| iata_code: 'DOA', | |
| municipality: 'Doany' | |
| }, | |
| { | |
| name: 'Coban Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-AV', | |
| iata_code: 'CBV', | |
| municipality: 'Coban' | |
| }, | |
| { | |
| name: 'Carmelita Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-PE', | |
| iata_code: 'CMM', | |
| municipality: 'Carmelita' | |
| }, | |
| { | |
| name: 'Coatepeque Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-QZ', | |
| iata_code: 'CTF', | |
| municipality: 'Coatepeque' | |
| }, | |
| { | |
| name: 'La Aurora Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-GU', | |
| iata_code: 'GUA', | |
| municipality: 'Guatemala City' | |
| }, | |
| { | |
| name: 'Huehuetenango Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-HU', | |
| iata_code: 'HUG', | |
| municipality: 'Huehuetenango' | |
| }, | |
| { | |
| name: 'National Wildlife Refuge Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-TX', | |
| iata_code: 'MGI', | |
| municipality: 'Matagorda Island' | |
| }, | |
| { | |
| name: 'Manga Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'MGP', | |
| municipality: 'Manga Mission' | |
| }, | |
| { | |
| name: 'Puerto Barrios Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-IZ', | |
| iata_code: 'PBR', | |
| municipality: 'Puerto Barrios' | |
| }, | |
| { | |
| name: 'Popt\u00fan Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-PE', | |
| iata_code: 'PON', | |
| municipality: 'Popt\u00fan' | |
| }, | |
| { | |
| name: 'Quich\u00e9 Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-QC', | |
| iata_code: 'AQB', | |
| municipality: 'Santa Cruz del Quich\u00e9' | |
| }, | |
| { | |
| name: 'Quezaltenango Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-QZ', | |
| iata_code: 'AAZ', | |
| municipality: 'Quezaltenango' | |
| }, | |
| { | |
| name: 'Rubelsanto Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-AV', | |
| iata_code: 'RUV', | |
| municipality: 'Rubelsanto' | |
| }, | |
| { | |
| name: 'Las Vegas Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-IZ', | |
| iata_code: 'LCF', | |
| municipality: 'Rio Dulce' | |
| }, | |
| { | |
| name: 'Retalhuleu Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-RE', | |
| iata_code: 'RER', | |
| municipality: 'Retalhuleu' | |
| }, | |
| { | |
| name: 'San Jos\u00e9 Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-ES', | |
| iata_code: 'GSJ', | |
| municipality: 'Puerto San Jos\u00e9' | |
| }, | |
| { | |
| name: 'Mundo Maya International Airport', | |
| iso_country: 'GT', | |
| country_name: 'Guatemala', | |
| iso_region: 'GT-PE', | |
| iata_code: 'FRS', | |
| municipality: 'San Benito' | |
| }, | |
| { | |
| name: 'Ailuk Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-ALK', | |
| iata_code: 'AIM', | |
| municipality: 'Ailuk Island' | |
| }, | |
| { | |
| name: 'Aur Island Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-AUR', | |
| iata_code: 'AUL', | |
| municipality: 'Aur Atoll' | |
| }, | |
| { | |
| name: 'Enyu Airfield', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-BIK', | |
| iata_code: 'BII', | |
| municipality: 'Bikini Atoll' | |
| }, | |
| { | |
| name: 'Ebadon Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-KWA', | |
| iata_code: 'EBN', | |
| municipality: 'Ebadon Island' | |
| }, | |
| { | |
| name: 'Jabot Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-JAB', | |
| iata_code: 'JAT', | |
| municipality: 'Ailinglapalap Atoll' | |
| }, | |
| { | |
| name: 'Jeh Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-ALL', | |
| iata_code: 'JEJ', | |
| municipality: 'Ailinglapalap Atoll' | |
| }, | |
| { | |
| name: 'Likiep Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-LIK', | |
| iata_code: 'LIK', | |
| municipality: 'Likiep Island' | |
| }, | |
| { | |
| name: 'Lae Island Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-LAE', | |
| iata_code: 'LML', | |
| municipality: 'Lae Island' | |
| }, | |
| { | |
| name: 'Maloelap Island Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-MAL', | |
| iata_code: 'MAV', | |
| municipality: 'Maloelap Island' | |
| }, | |
| { | |
| name: 'Mejit Atoll Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-MEJ', | |
| iata_code: 'MJB', | |
| municipality: 'Mejit Atoll' | |
| }, | |
| { | |
| name: 'Majkin Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-NMU', | |
| iata_code: 'MJE', | |
| municipality: 'Majkin' | |
| }, | |
| { | |
| name: 'Namorik Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-NMK', | |
| iata_code: 'NDK', | |
| municipality: 'Namorik Atoll' | |
| }, | |
| { | |
| name: 'Rongelap Island Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-RON', | |
| iata_code: 'RNP', | |
| municipality: 'Rongelap Island' | |
| }, | |
| { | |
| name: 'Tinak Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-ARN', | |
| iata_code: 'TIC', | |
| municipality: 'Arno Atoll' | |
| }, | |
| { | |
| name: 'Jaluit Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-JAL', | |
| iata_code: 'UIT', | |
| municipality: 'Jabor Jaluit Atoll' | |
| }, | |
| { | |
| name: 'Woja Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-ALL', | |
| iata_code: 'WJA', | |
| municipality: 'Woja' | |
| }, | |
| { | |
| name: 'Wotje Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-WTJ', | |
| iata_code: 'WTE', | |
| municipality: 'Wotje' | |
| }, | |
| { | |
| name: 'Wotho Island Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-WTN', | |
| iata_code: 'WTO', | |
| municipality: 'Wotho Island' | |
| }, | |
| { | |
| name: 'Ahuas Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-GD', | |
| iata_code: 'AHS', | |
| municipality: 'Ahuas' | |
| }, | |
| { | |
| name: 'Brus Laguna Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-GD', | |
| iata_code: 'BHG', | |
| municipality: 'Brus Laguna' | |
| }, | |
| { | |
| name: 'Carta Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-OL', | |
| iata_code: 'LUI', | |
| municipality: 'La Uni\u00f3n' | |
| }, | |
| { | |
| name: 'Coyoles Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-YO', | |
| iata_code: 'CYL', | |
| municipality: 'Coyoles' | |
| }, | |
| { | |
| name: 'Cauquira Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-GD', | |
| iata_code: 'CDD', | |
| municipality: 'Cauquira' | |
| }, | |
| { | |
| name: 'El Array\u00e1n Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-YO', | |
| iata_code: 'OAN', | |
| municipality: 'Olanchito' | |
| }, | |
| { | |
| name: 'El Aguacate Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-OL', | |
| iata_code: 'CAA', | |
| municipality: 'El Aguacate' | |
| }, | |
| { | |
| name: 'Celaque Gracias Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-LE', | |
| iata_code: 'GAC', | |
| municipality: 'Gracias' | |
| }, | |
| { | |
| name: 'Iriona Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-CL', | |
| iata_code: 'IRN', | |
| municipality: 'Iriona' | |
| }, | |
| { | |
| name: 'Jutigalpa airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-OL', | |
| iata_code: 'JUT', | |
| municipality: 'Jutigalpa' | |
| }, | |
| { | |
| name: 'Goloson International Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-AT', | |
| iata_code: 'LCE', | |
| municipality: 'La Ceiba' | |
| }, | |
| { | |
| name: 'La Esperanza Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-IN', | |
| iata_code: 'LEZ', | |
| municipality: 'La Esperanza' | |
| }, | |
| { | |
| name: 'Ram\u00f3n Villeda Morales International Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-CR', | |
| iata_code: 'SAP', | |
| municipality: 'San Pedro Sula' | |
| }, | |
| { | |
| name: 'Limon Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-CL', | |
| iata_code: 'LMH', | |
| municipality: 'Lim\u00f3n' | |
| }, | |
| { | |
| name: 'Hooker County Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-NE', | |
| iata_code: 'MHN', | |
| municipality: 'Mullen' | |
| }, | |
| { | |
| name: 'La Laguna Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-IB', | |
| iata_code: 'GJA', | |
| municipality: 'Guanaja' | |
| }, | |
| { | |
| name: 'Palacios Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-GD', | |
| iata_code: 'PCH', | |
| municipality: 'Palacios' | |
| }, | |
| { | |
| name: 'Puerto Lempira Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-GD', | |
| iata_code: 'PEU', | |
| municipality: 'Puerto Lempira' | |
| }, | |
| { | |
| name: 'Juan Manuel G\u00e1lvez International Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-IB', | |
| iata_code: 'RTB', | |
| municipality: 'Coxen Hole' | |
| }, | |
| { | |
| name: 'Rioamarillo Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-CP', | |
| iata_code: 'RUY', | |
| municipality: 'Cop\u00e1n Ruinas' | |
| }, | |
| { | |
| name: 'Palmerola International Airport / Jos\u00e9 Enrique Soto Cano Air Base', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-CM', | |
| iata_code: 'XPL', | |
| municipality: 'Palmerola' | |
| }, | |
| { | |
| name: 'Tela Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-AT', | |
| iata_code: 'TEA', | |
| municipality: 'Tela' | |
| }, | |
| { | |
| name: 'Toncont\u00edn International Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-FM', | |
| iata_code: 'TGU', | |
| municipality: 'Tegucigalpa' | |
| }, | |
| { | |
| name: 'Trujillo Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-CL', | |
| iata_code: 'TJI', | |
| municipality: 'Trujillo' | |
| }, | |
| { | |
| name: 'Tocoa Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-CL', | |
| iata_code: 'TCF', | |
| municipality: 'Tocoa' | |
| }, | |
| { | |
| name: 'Sulaco Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-YO', | |
| iata_code: 'SCD', | |
| municipality: 'Sulaco' | |
| }, | |
| { | |
| name: 'Utila Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-IB', | |
| iata_code: 'UII', | |
| municipality: 'Utila Island' | |
| }, | |
| { | |
| name: 'Morehead Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'MHY', | |
| municipality: 'Morehead' | |
| }, | |
| { | |
| name: 'Yoro Airport', | |
| iso_country: 'HN', | |
| country_name: 'Honduras', | |
| iso_region: 'HN-YO', | |
| iata_code: 'ORO', | |
| municipality: 'Yoro' | |
| }, | |
| { | |
| name: 'Mainoru Airstrip', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'MIZ', | |
| municipality: 'Mainoru' | |
| }, | |
| { | |
| name: 'Moki Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPM', | |
| iata_code: 'MJJ', | |
| municipality: 'Moki' | |
| }, | |
| { | |
| name: 'Maganja da Costa Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-Q', | |
| iata_code: 'MJS', | |
| municipality: 'Maganja' | |
| }, | |
| { | |
| name: 'Ian Fleming International Airport', | |
| iso_country: 'JM', | |
| country_name: 'Jamaica', | |
| iso_region: 'JM-05', | |
| iata_code: 'OCJ', | |
| municipality: 'Boscobel' | |
| }, | |
| { | |
| name: 'Norman Manley International Airport', | |
| iso_country: 'JM', | |
| country_name: 'Jamaica', | |
| iso_region: 'JM-01', | |
| iata_code: 'KIN', | |
| municipality: 'Kingston' | |
| }, | |
| { | |
| name: 'Sangster International Airport', | |
| iso_country: 'JM', | |
| country_name: 'Jamaica', | |
| iso_region: 'JM-08', | |
| iata_code: 'MBJ', | |
| municipality: 'Montego Bay' | |
| }, | |
| { | |
| name: 'Ken Jones Airport', | |
| iso_country: 'JM', | |
| country_name: 'Jamaica', | |
| iso_region: 'JM-04', | |
| iata_code: 'POT', | |
| municipality: 'Ken Jones' | |
| }, | |
| { | |
| name: 'Malekolon Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'MKN', | |
| municipality: 'Babase Island' | |
| }, | |
| { | |
| name: 'Negril Airport', | |
| iso_country: 'JM', | |
| country_name: 'Jamaica', | |
| iso_region: 'JM-09', | |
| iata_code: 'NEG', | |
| municipality: 'Negril' | |
| }, | |
| { | |
| name: 'Tinson Pen Airport', | |
| iso_country: 'JM', | |
| country_name: 'Jamaica', | |
| iso_region: 'JM-02', | |
| iata_code: 'KTP', | |
| municipality: 'Tinson Pen' | |
| }, | |
| { | |
| name: 'Mili Island Airport', | |
| iso_country: 'MH', | |
| country_name: 'Marshall Islands', | |
| iso_region: 'MH-MIL', | |
| iata_code: 'MIJ', | |
| municipality: 'Mili Island' | |
| }, | |
| { | |
| name: 'Malalaua Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-GPK', | |
| iata_code: 'MLQ', | |
| municipality: 'Malalaua' | |
| }, | |
| { | |
| name: 'Hinthada Airport', | |
| iso_country: 'MM', | |
| country_name: 'Myanmar', | |
| iso_region: 'MM-07', | |
| iata_code: 'HEB', | |
| municipality: 'Hinthada' | |
| }, | |
| { | |
| name: 'Heho Airport', | |
| iso_country: 'MM', | |
| country_name: 'Myanmar', | |
| iso_region: 'MM-17', | |
| iata_code: 'HEH', | |
| municipality: 'Kalaw Township' | |
| }, | |
| { | |
| name: 'Aer\u00f3dromo de Cupul', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-YUC', | |
| iata_code: 'TZM', | |
| municipality: 'Tizimin' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Juan N. \u00c1lvarez', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-GRO', | |
| iata_code: 'ACA', | |
| municipality: 'Ciudad de Acapulco' | |
| }, | |
| { | |
| name: 'Del Norte International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-NLE', | |
| iata_code: 'NTR', | |
| municipality: 'Monterrey' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Jes\u00fas Ter\u00e1n Peredo', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-AGU', | |
| iata_code: 'AGU', | |
| municipality: 'Aguascalientes' | |
| }, | |
| { | |
| name: 'Bah\u00edas de Huatulco International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-OAX', | |
| iata_code: 'HUX', | |
| municipality: 'Huatulco' | |
| }, | |
| { | |
| name: 'Cananea National Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SON', | |
| iata_code: 'CNA', | |
| municipality: 'Cananea' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Mariano Matamoros', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MOR', | |
| iata_code: 'CVJ', | |
| municipality: 'Temixco' | |
| }, | |
| { | |
| name: 'Ciudad Acu\u00f1a New International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-COA', | |
| iata_code: 'ACN', | |
| municipality: 'Ciudad Acu\u00f1a' | |
| }, | |
| { | |
| name: 'Ciudad del Carmen International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CAM', | |
| iata_code: 'CME', | |
| municipality: 'Ciudad del Carmen' | |
| }, | |
| { | |
| name: 'Aeropuerto Municipal de Nuevo Casas Grandes', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CHH', | |
| iata_code: 'NCG', | |
| municipality: 'Nuevo Casas Grandes' | |
| }, | |
| { | |
| name: 'Bachigualato Federal International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SIN', | |
| iata_code: 'CUL', | |
| municipality: 'Culiac\u00e1n' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Chetumal', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-ROO', | |
| iata_code: 'CTM', | |
| municipality: 'Chetumal' | |
| }, | |
| { | |
| name: 'Ciudad Obreg\u00f3n International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SON', | |
| iata_code: 'CEN', | |
| municipality: 'Ciudad Obreg\u00f3n' | |
| }, | |
| { | |
| name: 'San Antonio Copalar Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CHP', | |
| iata_code: 'CJT', | |
| municipality: 'Comit\u00e1n' | |
| }, | |
| { | |
| name: 'Ingeniero Alberto Acu\u00f1a Ongay International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CAM', | |
| iata_code: 'CPE', | |
| municipality: 'Campeche' | |
| }, | |
| { | |
| name: 'Abraham Gonz\u00e1lez International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CHH', | |
| iata_code: 'CJS', | |
| municipality: 'Ciudad Ju\u00e1rez' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Chichen Itza', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-YUC', | |
| iata_code: 'CZA', | |
| municipality: 'Chichen Itza' | |
| }, | |
| { | |
| name: 'General Roberto Fierro Villalobos International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CHH', | |
| iata_code: 'CUU', | |
| municipality: 'Chihuahua' | |
| }, | |
| { | |
| name: 'General Pedro Jose Mendez International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-TAM', | |
| iata_code: 'CVM', | |
| municipality: 'Ciudad Victoria' | |
| }, | |
| { | |
| name: 'Aeropuerto Nacional Captain Rogelio Castillo', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-GUA', | |
| iata_code: 'CYW', | |
| municipality: 'Celaya' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Cozumel', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-ROO', | |
| iata_code: 'CZM', | |
| municipality: 'Ciudad de Cozumel' | |
| }, | |
| { | |
| name: 'Ciudad Constituci\u00f3n National Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'CUA', | |
| municipality: 'Comond\u00fa' | |
| }, | |
| { | |
| name: 'Ciudad Mante Los Huastecas National Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-TAM', | |
| iata_code: 'MMC', | |
| municipality: 'Ciudad Mante' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional General Guadalupe Victoria', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-DUR', | |
| iata_code: 'DGO', | |
| municipality: 'Ciudad de Durango' | |
| }, | |
| { | |
| name: 'Amado Nervo National Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-NAY', | |
| iata_code: 'TPQ', | |
| municipality: 'Tepic' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Ensenada', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCN', | |
| iata_code: 'ESE', | |
| municipality: 'Ensenada' | |
| }, | |
| { | |
| name: 'Guadalajara International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-JAL', | |
| iata_code: 'GDL', | |
| municipality: 'Guadalajara' | |
| }, | |
| { | |
| name: 'General Jos\u00e9 Mar\u00eda Y\u00e1\u00f1ez International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SON', | |
| iata_code: 'GYM', | |
| municipality: 'Guaymas' | |
| }, | |
| { | |
| name: 'Guerrero Negro Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCN', | |
| iata_code: 'GUB', | |
| municipality: 'San Quint\u00edn' | |
| }, | |
| { | |
| name: 'Tehuacan Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-PUE', | |
| iata_code: 'TCN', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'General Ignacio P. Garcia International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SON', | |
| iata_code: 'HMO', | |
| municipality: 'Hermosillo' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Licenciado Miguel de la Madrid', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-COL', | |
| iata_code: 'CLQ', | |
| municipality: 'Colima' | |
| }, | |
| { | |
| name: 'Aeropuerto Nacional de Isla Mujeres', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-ROO', | |
| iata_code: 'ISJ', | |
| municipality: 'Isla Mujeres' | |
| }, | |
| { | |
| name: 'Plan De Guadalupe International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-COA', | |
| iata_code: 'SLW', | |
| municipality: 'Saltillo' | |
| }, | |
| { | |
| name: 'Aeropuerto Nacional General Antonio C\u00e1rdenas Rodr\u00edguez', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-OAX', | |
| iata_code: 'IZT', | |
| municipality: 'Ixtepec' | |
| }, | |
| { | |
| name: 'El Lencero Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-VER', | |
| iata_code: 'JAL', | |
| municipality: 'Xalapa' | |
| }, | |
| { | |
| name: 'Aeropuerto Nacional Jorge Jim\u00e9nez Cant\u00fa', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MEX', | |
| iata_code: 'AZP', | |
| municipality: 'Atizap\u00e1n de Zaragoza' | |
| }, | |
| { | |
| name: 'L\u00e1zaro C\u00e1rdenas Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MIC', | |
| iata_code: 'LZC', | |
| municipality: 'L\u00e1zaro C\u00e1rdenas' | |
| }, | |
| { | |
| name: 'Valle del Fuerte International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SIN', | |
| iata_code: 'LMM', | |
| municipality: 'Los Mochis' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional del Baj\u00edo', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-GUA', | |
| iata_code: 'BJX', | |
| municipality: 'Silao' | |
| }, | |
| { | |
| name: 'Manuel M\u00e1rquez de Le\u00f3n International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'LAP', | |
| municipality: 'La Paz' | |
| }, | |
| { | |
| name: 'Loreto International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'LTO', | |
| municipality: 'Loreto' | |
| }, | |
| { | |
| name: 'General Servando Canales International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-TAM', | |
| iata_code: 'MAM', | |
| municipality: 'Matamoros' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Manuel Crescencio Rej\u00f3n', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-YUC', | |
| iata_code: 'MID', | |
| municipality: 'Ciudad de M\u00e9rida' | |
| }, | |
| { | |
| name: 'Mulege Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'MUG', | |
| municipality: 'Mulege' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Gral. Rodolfo S\u00e1nchez Taboada', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCN', | |
| iata_code: 'MXL', | |
| municipality: 'Mexicali' | |
| }, | |
| { | |
| name: 'General Francisco J. Mujica International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MIC', | |
| iata_code: 'MLM', | |
| municipality: 'Morelia' | |
| }, | |
| { | |
| name: 'Minatitl\u00e1n/Coatzacoalcos International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-VER', | |
| iata_code: 'MTT', | |
| municipality: 'Cosoleacaque' | |
| }, | |
| { | |
| name: 'Monclova International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-COA', | |
| iata_code: 'LOV', | |
| municipality: 'Monclova' | |
| }, | |
| { | |
| name: 'Benito Ju\u00e1rez International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-DIF', | |
| iata_code: 'MEX', | |
| municipality: 'Ciudad de M\u00e9xico' | |
| }, | |
| { | |
| name: 'Monterrey International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-NLE', | |
| iata_code: 'MTY', | |
| municipality: 'Monterrey' | |
| }, | |
| { | |
| name: 'General Rafael Buelna International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SIN', | |
| iata_code: 'MZT', | |
| municipality: 'Mazatl\u00e0n' | |
| }, | |
| { | |
| name: 'Nogales International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SON', | |
| iata_code: 'NOG', | |
| municipality: 'Nogales' | |
| }, | |
| { | |
| name: 'Quetzalc\u00f3atl International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-TAM', | |
| iata_code: 'NLD', | |
| municipality: 'Nuevo Laredo' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Xoxocotl\u00e1n', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-OAX', | |
| iata_code: 'OAX', | |
| municipality: 'Oaxaca' | |
| }, | |
| { | |
| name: 'El Taj\u00edn National Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-VER', | |
| iata_code: 'PAZ', | |
| municipality: 'Poza Rica' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Hermanos Serd\u00e1n', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-PUE', | |
| iata_code: 'PBC', | |
| municipality: 'Puebla' | |
| }, | |
| { | |
| name: 'Piedras Negras International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-COA', | |
| iata_code: 'PDS', | |
| municipality: 'Piedras Negras' | |
| }, | |
| { | |
| name: 'Punta Colorada Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'PCO', | |
| municipality: 'La Ribera' | |
| }, | |
| { | |
| name: 'Uruapan - Licenciado y General Ignacio Lopez Rayon International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MIC', | |
| iata_code: 'UPN', | |
| municipality: 'Uruapan' | |
| }, | |
| { | |
| name: 'Palenque International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CHP', | |
| iata_code: 'PQM', | |
| municipality: 'Palenque' | |
| }, | |
| { | |
| name: 'Puerto Vallarta International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-JAL', | |
| iata_code: 'PVR', | |
| municipality: 'Puerto Vallarta' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Puerto Escondido', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-OAX', | |
| iata_code: 'PXM', | |
| municipality: 'Puerto Escondido' | |
| }, | |
| { | |
| name: 'Quer\u00e9taro Intercontinental Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-QUE', | |
| iata_code: 'QRO', | |
| municipality: 'Quer\u00e9taro' | |
| }, | |
| { | |
| name: 'General Lucio Blanco International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-TAM', | |
| iata_code: 'REX', | |
| municipality: 'Reynosa' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Los Cabos', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'SJD', | |
| municipality: 'San Jos\u00e9 del Cabo' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional San Felipe', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCN', | |
| iata_code: 'SFH', | |
| municipality: 'Mexicali' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional General Felipe \u00c1ngeles', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MEX', | |
| iata_code: 'NLU', | |
| municipality: 'Mexico City' | |
| }, | |
| { | |
| name: 'Ponciano Arriaga International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SLP', | |
| iata_code: 'SLP', | |
| municipality: 'San Luis Potos\u00ed' | |
| }, | |
| { | |
| name: 'Francisco Sarabia Tinoco International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-COA', | |
| iata_code: 'TRC', | |
| municipality: 'Torre\u00f3n' | |
| }, | |
| { | |
| name: 'Angel Albino Corzo International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CHP', | |
| iata_code: 'TGZ', | |
| municipality: 'Tuxtla Guti\u00e9rrez' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Gral. Abelardo Rodriguez', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCN', | |
| iata_code: 'TIJ', | |
| municipality: 'Ciudad de Tijuana' | |
| }, | |
| { | |
| name: 'Felipe Carrillo Puerto International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-ROO', | |
| iata_code: 'TQO', | |
| municipality: 'Tulum' | |
| }, | |
| { | |
| name: 'General Francisco Javier Mina International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-TAM', | |
| iata_code: 'TAM', | |
| municipality: 'Tampico' | |
| }, | |
| { | |
| name: 'Aeropuerto Nacional de Tamu\u00edn', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SLP', | |
| iata_code: 'TSL', | |
| municipality: 'Tamuin' | |
| }, | |
| { | |
| name: 'Adolfo L\u00f3pez Mateos International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MEX', | |
| iata_code: 'TLC', | |
| municipality: 'Toluca' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Tapachula', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-CHP', | |
| iata_code: 'TAP', | |
| municipality: 'Tapachula' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Canc\u00fan', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-ROO', | |
| iata_code: 'CUN', | |
| municipality: 'Canc\u00fan' | |
| }, | |
| { | |
| name: 'Mal Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MRL', | |
| iata_code: 'MMV', | |
| municipality: 'Mal Island' | |
| }, | |
| { | |
| name: 'Carlos Rovirosa P\u00e9rez International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-TAB', | |
| iata_code: 'VSA', | |
| municipality: 'Villahermosa' | |
| }, | |
| { | |
| name: 'General Heriberto Jara International Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-VER', | |
| iata_code: 'VER', | |
| municipality: 'Veracruz' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional General Leobardo C. Ruiz', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-ZAC', | |
| iata_code: 'ZCL', | |
| municipality: 'Zacatecas' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional de Zihuatanejo', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-GRO', | |
| iata_code: 'ZIH', | |
| municipality: 'Ixtapa' | |
| }, | |
| { | |
| name: 'Zamora Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MIC', | |
| iata_code: 'ZMM', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Aeropuerto Internacional Playa de Oro', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-COL', | |
| iata_code: 'ZLO', | |
| municipality: 'Manzanillo' | |
| }, | |
| { | |
| name: 'Mandalgobi Airport', | |
| iso_country: 'MN', | |
| country_name: 'Mongolia', | |
| iso_region: 'MN-059', | |
| iata_code: 'MXW', | |
| municipality: 'Mandalgobi' | |
| }, | |
| { | |
| name: 'Bluefields Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-AS', | |
| iata_code: 'BEF', | |
| municipality: 'Bluefileds' | |
| }, | |
| { | |
| name: 'San Pedro Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-AN', | |
| iata_code: 'BZA', | |
| municipality: 'Bonanza' | |
| }, | |
| { | |
| name: 'Costa Esmeralda Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-RI', | |
| iata_code: 'ECI', | |
| municipality: 'Tola' | |
| }, | |
| { | |
| name: 'Corn Island Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-AS', | |
| iata_code: 'RNI', | |
| municipality: 'Corn Island' | |
| }, | |
| { | |
| name: 'Augusto C. Sandino (Managua) International Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-MN', | |
| iata_code: 'MGA', | |
| municipality: 'Managua' | |
| }, | |
| { | |
| name: 'Maron Island Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MRL', | |
| iata_code: 'MNP', | |
| municipality: 'Hermit Islands' | |
| }, | |
| { | |
| name: 'Puerto Cabezas Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-AN', | |
| iata_code: 'PUZ', | |
| municipality: 'Puerto Cabezas' | |
| }, | |
| { | |
| name: 'Rosita Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-AN', | |
| iata_code: 'RFS', | |
| municipality: 'La Rosita' | |
| }, | |
| { | |
| name: 'San Carlos Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-SJ', | |
| iata_code: 'NCR', | |
| municipality: 'San Carlos' | |
| }, | |
| { | |
| name: 'Siuna', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-AN', | |
| iata_code: 'SIU', | |
| municipality: 'Siuna' | |
| }, | |
| { | |
| name: 'Waspam Airport', | |
| iso_country: 'NI', | |
| country_name: 'Nicaragua', | |
| iso_region: 'NI-AN', | |
| iata_code: 'WSP', | |
| municipality: 'Waspam' | |
| }, | |
| { | |
| name: 'Maleo Airport', | |
| iso_country: 'ID', | |
| country_name: 'Indonesia', | |
| iso_region: 'ID-ST', | |
| iata_code: 'MOH', | |
| municipality: 'Morowali' | |
| }, | |
| { | |
| name: 'Moses Point Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'MOS', | |
| municipality: 'Elim' | |
| }, | |
| { | |
| name: 'Bocas del Toro International Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-1', | |
| iata_code: 'BOC', | |
| municipality: 'Isla Col\u00f3n' | |
| }, | |
| { | |
| name: 'Alonso Valderrama Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-6', | |
| iata_code: 'CTD', | |
| municipality: 'Chitr\u00e9' | |
| }, | |
| { | |
| name: 'Changuinola Captain Manuel Ni\u00f1o International Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-1', | |
| iata_code: 'CHX', | |
| municipality: 'Changuinola' | |
| }, | |
| { | |
| name: 'Enrique Malek International Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-4', | |
| iata_code: 'DAV', | |
| municipality: 'David' | |
| }, | |
| { | |
| name: 'Enrique Adolfo Jimenez Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-3', | |
| iata_code: 'ONX', | |
| municipality: 'Col\u00f3n' | |
| }, | |
| { | |
| name: 'Makini Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'MPG', | |
| municipality: 'Makini' | |
| }, | |
| { | |
| name: 'Panam\u00e1 Pac\u00edfico International Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-10', | |
| iata_code: 'BLB', | |
| municipality: 'Panam\u00e1 City' | |
| }, | |
| { | |
| name: 'Mamitupu Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PS-GY', | |
| iata_code: 'MPI', | |
| municipality: 'Mamitupu' | |
| }, | |
| { | |
| name: 'Jaqu\u00e9 Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-5', | |
| iata_code: 'JQE', | |
| municipality: 'Jaqu\u00e9' | |
| }, | |
| { | |
| name: 'Marcos A. Gelabert International Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-8', | |
| iata_code: 'PAC', | |
| municipality: 'Albrook' | |
| }, | |
| { | |
| name: 'Puerto Obald\u00eda Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PS-GY', | |
| iata_code: 'PUE', | |
| municipality: 'Puerto Obald\u00eda' | |
| }, | |
| { | |
| name: 'Capt. J. Montenegro Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-7', | |
| iata_code: 'PDM', | |
| municipality: 'Pedas\u00ed' | |
| }, | |
| { | |
| name: 'Scarlett Martinez International Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-2', | |
| iata_code: 'RIH', | |
| municipality: 'R\u00edo Hato' | |
| }, | |
| { | |
| name: 'Ruben Cantu Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-9', | |
| iata_code: 'SYP', | |
| municipality: 'Santiago' | |
| }, | |
| { | |
| name: 'Tocumen International Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PA-8', | |
| iata_code: 'PTY', | |
| municipality: 'Tocumen' | |
| }, | |
| { | |
| name: 'Mapua(Mabua) Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'MPU', | |
| municipality: 'Tatau Island' | |
| }, | |
| { | |
| name: 'El Porvenir Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PS-GY', | |
| iata_code: 'PVE', | |
| municipality: 'El Porvenir' | |
| }, | |
| { | |
| name: 'San Blas Airport', | |
| iso_country: 'PA', | |
| country_name: 'Panama', | |
| iso_region: 'PS-GY', | |
| iata_code: 'NBL', | |
| municipality: 'Warsobtugua' | |
| }, | |
| { | |
| name: 'Miyanmin Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-SAN', | |
| iata_code: 'MPX', | |
| municipality: 'Miyanmin' | |
| }, | |
| { | |
| name: 'Malam Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-WPD', | |
| iata_code: 'MQO', | |
| municipality: 'Malam' | |
| }, | |
| { | |
| name: 'La Fortuna Arenal Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-A', | |
| iata_code: 'FON', | |
| municipality: 'La Fortuna' | |
| }, | |
| { | |
| name: 'Buenos Aires Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'BAI', | |
| municipality: 'Punta Arenas' | |
| }, | |
| { | |
| name: 'Barra del Colorado Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-L', | |
| iata_code: 'BCL', | |
| municipality: 'Pococi' | |
| }, | |
| { | |
| name: 'Barra del Tortuguero', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-L', | |
| iata_code: 'TTQ', | |
| municipality: 'Tortuguero' | |
| }, | |
| { | |
| name: 'Coto 47 Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'OTR', | |
| municipality: 'Corredores' | |
| }, | |
| { | |
| name: 'Chacarita Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'JAP', | |
| municipality: 'Puntarenas' | |
| }, | |
| { | |
| name: 'Playa Samara/Carrillo Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-G', | |
| iata_code: 'PLD', | |
| municipality: 'Carrillo' | |
| }, | |
| { | |
| name: 'Drake Bay Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'DRK', | |
| municipality: 'Puntarenas' | |
| }, | |
| { | |
| name: 'Flamingo Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-G', | |
| iata_code: 'FMG', | |
| municipality: 'Brasilito' | |
| }, | |
| { | |
| name: 'Golfito Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'GLF', | |
| municipality: 'Golfito' | |
| }, | |
| { | |
| name: 'Guapiles Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-L', | |
| iata_code: 'GPL', | |
| municipality: 'Pococi' | |
| }, | |
| { | |
| name: 'Islita Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-G', | |
| iata_code: 'PBP', | |
| municipality: 'Nandayure' | |
| }, | |
| { | |
| name: 'Guanacaste Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-G', | |
| iata_code: 'LIR', | |
| municipality: 'Liberia' | |
| }, | |
| { | |
| name: 'Los Chiles Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-A', | |
| iata_code: 'LSL', | |
| municipality: 'Los Chiles' | |
| }, | |
| { | |
| name: 'Limon International Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-L', | |
| iata_code: 'LIO', | |
| municipality: 'Puerto Limon' | |
| }, | |
| { | |
| name: 'Mojica Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-G', | |
| iata_code: 'CSC', | |
| municipality: 'Ca\u00f1as' | |
| }, | |
| { | |
| name: 'Guanacaste Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-G', | |
| iata_code: 'NCT', | |
| municipality: 'Nicoya/Guanacate' | |
| }, | |
| { | |
| name: 'Nosara Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-G', | |
| iata_code: 'NOB', | |
| municipality: 'Nicoya' | |
| }, | |
| { | |
| name: 'Juan Santamar\u00eda International Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-A', | |
| iata_code: 'SJO', | |
| municipality: 'San Jos\u00e9 (Alajuela)' | |
| }, | |
| { | |
| name: 'Puerto Jimenez Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'PJM', | |
| municipality: 'Puerto Jimenez' | |
| }, | |
| { | |
| name: 'Palmar Sur Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'PMZ', | |
| municipality: 'Palmar Sur' | |
| }, | |
| { | |
| name: 'Tob\u00edas Bola\u00f1os International Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-SJ', | |
| iata_code: 'SYQ', | |
| municipality: 'San Jose' | |
| }, | |
| { | |
| name: 'Quepos Managua Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'XQP', | |
| municipality: 'Quepos' | |
| }, | |
| { | |
| name: 'Rio Frio / Progreso Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-H', | |
| iata_code: 'RFR', | |
| municipality: 'Rio Frio / Progreso' | |
| }, | |
| { | |
| name: 'San Isidro del General Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-SJ', | |
| iata_code: 'IPZ', | |
| municipality: 'P\u00e9rez Zeled\u00f3n' | |
| }, | |
| { | |
| name: 'San Vito de Java Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'TOO', | |
| municipality: 'Coto Brus' | |
| }, | |
| { | |
| name: 'Moroak Airport', | |
| iso_country: 'AU', | |
| country_name: 'Australia', | |
| iso_region: 'AU-NT', | |
| iata_code: 'MRT', | |
| municipality: 'Moroak' | |
| }, | |
| { | |
| name: 'Tamarindo Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-G', | |
| iata_code: 'TNO', | |
| municipality: 'Tamarindo' | |
| }, | |
| { | |
| name: 'Tambor Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-P', | |
| iata_code: 'TMU', | |
| municipality: 'Nicoya' | |
| }, | |
| { | |
| name: 'Upala Airport', | |
| iso_country: 'CR', | |
| country_name: 'Costa Rica', | |
| iso_region: 'CR-A', | |
| iata_code: 'UPL', | |
| municipality: 'Upala' | |
| }, | |
| { | |
| name: 'Marigot Seaplane Base', | |
| iso_country: 'MF', | |
| country_name: 'Saint Martin (French part)', | |
| iso_region: 'MF-U-A', | |
| iata_code: 'MSB', | |
| municipality: 'Saint Martin' | |
| }, | |
| { | |
| name: 'Monse\u00f1or \u00d3scar Arnulfo Romero International Airport', | |
| iso_country: 'SV', | |
| country_name: 'El Salvador', | |
| iso_region: 'SV-PA', | |
| iata_code: 'SAL', | |
| municipality: 'San Salvador (San Luis Talpa)' | |
| }, | |
| { | |
| name: 'Ilopango International Airport', | |
| iso_country: 'SV', | |
| country_name: 'El Salvador', | |
| iso_region: 'SV-SS', | |
| iata_code: 'ILS', | |
| municipality: 'San Salvador' | |
| }, | |
| { | |
| name: 'Les Cayes Airport', | |
| iso_country: 'HT', | |
| country_name: 'Haiti', | |
| iso_region: 'HT-SD', | |
| iata_code: 'CYA', | |
| municipality: 'Les Cayes' | |
| }, | |
| { | |
| name: 'Cap Haitien International Airport', | |
| iso_country: 'HT', | |
| country_name: 'Haiti', | |
| iso_region: 'HT-ND', | |
| iata_code: 'CAP', | |
| municipality: 'Cap Haitien' | |
| }, | |
| { | |
| name: 'Metro Field', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-AK', | |
| iata_code: 'MTX', | |
| municipality: 'Fairbanks' | |
| }, | |
| { | |
| name: 'Jacmel Airport', | |
| iso_country: 'HT', | |
| country_name: 'Haiti', | |
| iso_region: 'HT-SE', | |
| iata_code: 'JAK', | |
| municipality: 'Jacmel' | |
| }, | |
| { | |
| name: 'J\u00e9r\u00e9mie Airport', | |
| iso_country: 'HT', | |
| country_name: 'Haiti', | |
| iso_region: 'HT-GA', | |
| iata_code: 'JEE', | |
| municipality: 'Jeremie' | |
| }, | |
| { | |
| name: 'Toussaint Louverture International Airport', | |
| iso_country: 'HT', | |
| country_name: 'Haiti', | |
| iso_region: 'HT-OU', | |
| iata_code: 'PAP', | |
| municipality: 'Port-au-Prince' | |
| }, | |
| { | |
| name: 'Port-de-Paix Airport', | |
| iso_country: 'HT', | |
| country_name: 'Haiti', | |
| iso_region: 'HT-NO', | |
| iata_code: 'PAX', | |
| municipality: 'Port-de-Paix' | |
| }, | |
| { | |
| name: 'Montepuez Airport', | |
| iso_country: 'MZ', | |
| country_name: 'Mozambique', | |
| iso_region: 'MZ-P', | |
| iata_code: 'MTU', | |
| municipality: 'Montepuez' | |
| }, | |
| { | |
| name: 'Agalega Island Airstrip', | |
| iso_country: 'MU', | |
| country_name: 'Mauritius', | |
| iso_region: 'MU-AG', | |
| iata_code: 'AHG', | |
| municipality: 'Vingt Cinq' | |
| }, | |
| { | |
| name: 'Gustavo Rizo Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-14', | |
| iata_code: 'BCA', | |
| municipality: 'Baracoa' | |
| }, | |
| { | |
| name: 'Las Brujas Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-07', | |
| iata_code: 'BWW', | |
| municipality: 'Cayo Santa Maria' | |
| }, | |
| { | |
| name: 'Carlos Manuel de Cespedes Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-12', | |
| iata_code: 'BYM', | |
| municipality: 'Bayamo' | |
| }, | |
| { | |
| name: 'M\u00e1ximo G\u00f3mez Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-08', | |
| iata_code: 'AVI', | |
| municipality: 'Ciro Redondo' | |
| }, | |
| { | |
| name: 'Jardines Del Rey Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-08', | |
| iata_code: 'CCC', | |
| municipality: 'Cayo Coco' | |
| }, | |
| { | |
| name: 'Jaime Gonzalez Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-06', | |
| iata_code: 'CFG', | |
| municipality: 'Cienfuegos' | |
| }, | |
| { | |
| name: 'Vilo Acu\u00f1a International Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-99', | |
| iata_code: 'CYO', | |
| municipality: 'Cayo Largo del Sur' | |
| }, | |
| { | |
| name: 'Ignacio Agramonte International Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-09', | |
| iata_code: 'CMW', | |
| municipality: 'Camaguey' | |
| }, | |
| { | |
| name: 'Antonio Maceo International Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-13', | |
| iata_code: 'SCU', | |
| municipality: 'Santiago' | |
| }, | |
| { | |
| name: 'Leeward Point Field', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-14', | |
| iata_code: 'NBW', | |
| municipality: 'Guantanamo Bay Naval Station' | |
| }, | |
| { | |
| name: 'Mariana Grajales Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-14', | |
| iata_code: 'GAO', | |
| municipality: 'Guant\u00e1namo' | |
| }, | |
| { | |
| name: 'Jos\u00e9 Mart\u00ed International Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-03', | |
| iata_code: 'HAV', | |
| municipality: 'Havana' | |
| }, | |
| { | |
| name: 'Frank Pais International Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-11', | |
| iata_code: 'HOG', | |
| municipality: 'Holguin' | |
| }, | |
| { | |
| name: 'Kawama Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-04', | |
| iata_code: 'VRO', | |
| municipality: 'Santa Marta' | |
| }, | |
| { | |
| name: 'La Coloma Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-01', | |
| iata_code: 'LCL', | |
| municipality: 'Pinar del Rio' | |
| }, | |
| { | |
| name: 'Alfredo Noa D\u00edaz Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-14', | |
| iata_code: 'UMA', | |
| municipality: 'Mais\u00ed' | |
| }, | |
| { | |
| name: 'Mayajigua Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-07', | |
| iata_code: 'MJG', | |
| municipality: 'Mayajigua' | |
| }, | |
| { | |
| name: 'Orestes Acosta Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-11', | |
| iata_code: 'MOA', | |
| municipality: 'Moa' | |
| }, | |
| { | |
| name: 'Sierra Maestra International Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-12', | |
| iata_code: 'MZO', | |
| municipality: 'Manzanillo' | |
| }, | |
| { | |
| name: 'Rafael Cabrera Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-99', | |
| iata_code: 'GER', | |
| municipality: 'Nueva Gerona' | |
| }, | |
| { | |
| name: 'Playa Baracoa Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-15', | |
| iata_code: 'UPB', | |
| municipality: 'Havana' | |
| }, | |
| { | |
| name: 'Abel Santamaria Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-05', | |
| iata_code: 'SNU', | |
| municipality: 'Santa Clara' | |
| }, | |
| { | |
| name: 'San Juli\u00e1n Air Base', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-01', | |
| iata_code: 'SNJ', | |
| municipality: 'Sandino' | |
| }, | |
| { | |
| name: 'Siguanea Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-99', | |
| iata_code: 'SZJ', | |
| municipality: 'Isla de la Juventud' | |
| }, | |
| { | |
| name: 'Sancti Spiritus Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-07', | |
| iata_code: 'USS', | |
| municipality: 'Sancti Spiritus' | |
| }, | |
| { | |
| name: 'Alberto Delgado Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-07', | |
| iata_code: 'TND', | |
| municipality: 'Trinidad' | |
| }, | |
| { | |
| name: 'Juan Gualberto Gomez International Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-04', | |
| iata_code: 'VRA', | |
| municipality: 'Matanzas' | |
| }, | |
| { | |
| name: 'Hermanos Ameijeiras Airport', | |
| iso_country: 'CU', | |
| country_name: 'Cuba', | |
| iso_region: 'CU-10', | |
| iata_code: 'VTU', | |
| municipality: 'Las Tunas' | |
| }, | |
| { | |
| name: 'Faresmaathoda Airport', | |
| iso_country: 'MV', | |
| country_name: 'Maldives', | |
| iso_region: 'MV-28', | |
| iata_code: 'FMT', | |
| municipality: 'Faresmaathodaa' | |
| }, | |
| { | |
| name: 'Charles Kirkconnell International Airport', | |
| iso_country: 'KY', | |
| country_name: 'Cayman Islands', | |
| iso_region: 'KY-CB', | |
| iata_code: 'CYB', | |
| municipality: 'West End' | |
| }, | |
| { | |
| name: 'Edward Bodden Little Cayman Airfield', | |
| iso_country: 'KY', | |
| country_name: 'Cayman Islands', | |
| iso_region: 'KY-LC', | |
| iata_code: 'LYB', | |
| municipality: 'Blossom Village' | |
| }, | |
| { | |
| name: 'Owen Roberts International Airport', | |
| iso_country: 'KY', | |
| country_name: 'Cayman Islands', | |
| iso_region: 'KY-GC', | |
| iata_code: 'GCM', | |
| municipality: 'George Town' | |
| }, | |
| { | |
| name: 'Motswari Airport', | |
| iso_country: 'ZA', | |
| country_name: 'South Africa', | |
| iso_region: 'ZA-MP', | |
| iata_code: 'MWR', | |
| municipality: 'Motswari Private Game Reserve' | |
| }, | |
| { | |
| name: 'Mussau Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-NIK', | |
| iata_code: 'MWU', | |
| municipality: 'Mussau Island' | |
| }, | |
| { | |
| name: 'Punta Abreojos Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'AJS', | |
| municipality: 'Muleg\u00e9' | |
| }, | |
| { | |
| name: 'Apatzing\u00e1n - Pablo L. Sidar Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-MIC', | |
| iata_code: 'AZG', | |
| municipality: 'Apatzing\u00e1n' | |
| }, | |
| { | |
| name: 'Aeropuerto Nacional de Playa del Carmen', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-ROO', | |
| iata_code: 'PCM', | |
| municipality: 'Solidaridad' | |
| }, | |
| { | |
| name: 'Punta Chivato Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'PCV', | |
| municipality: 'Muleg\u00e9' | |
| }, | |
| { | |
| name: 'Estaci\u00f3n Aeronaval de Salina Cruz', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-OAX', | |
| iata_code: 'SCX', | |
| municipality: 'Salina Cruz' | |
| }, | |
| { | |
| name: 'San Ignacio Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-BCS', | |
| iata_code: 'SGM', | |
| municipality: 'Muleg\u00e9' | |
| }, | |
| { | |
| name: 'Base Aeronaval de Tulum', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-ROO', | |
| iata_code: 'TUY', | |
| municipality: 'Tulum' | |
| }, | |
| { | |
| name: 'San Luis R\u00edo Colorado Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SON', | |
| iata_code: 'UAC', | |
| municipality: 'San Luis R\u00edo Colorado' | |
| }, | |
| { | |
| name: '\u00c1lamos Airport', | |
| iso_country: 'MX', | |
| country_name: 'Mexico', | |
| iso_region: 'MX-SON', | |
| iata_code: 'XAL', | |
| municipality: '\u00c1lamos' | |
| }, | |
| { | |
| name: 'Monticello Airport', | |
| iso_country: 'US', | |
| country_name: 'United States', | |
| iso_region: 'US-UT', | |
| iata_code: 'MXC', | |
| municipality: 'Monticello' | |
| }, | |
| { | |
| name: 'Mindik Airport', | |
| iso_country: 'PG', | |
| country_name: 'Papua New Guinea', | |
| iso_region: 'PG-MPL', | |
| iata_code: 'MXK', | |
| municipality: 'Mindik' | |
| }, | |
| { | |
| name: 'Sungai Tekai Airport', | |
| iso_country: 'MY', | |
| country_name: 'Malaysia', | |
| iso_region: 'MY-01', | |
| iata_code: 'GTK', | |
| municipality: 'Sungai Tekai' | |
| }, | |
| { | |
| name: 'Long Banga Airport', | |
| iso_country: 'MY', | |
| country_name: 'Malaysia', | |
| iso_region: 'MY-13', | |
| iata_code: 'LBP', | |
| municipality: 'Long Banga' | |
| }, | |
| { | |
| name: 'Sipitang Airport', | |
| iso_country: 'MY', | |
| country_name: 'Malaysia', | |
| iso_region: 'MY-12', | |
| iata_code: 'SPT', | |
| municipality: 'Sipitang' | |
| }, | |
| { | |
| name: 'Clarence A. Bain Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-SA', | |
| iata_code: 'MAY', | |
| municipality: 'Mangrove Cay' | |
| }, | |
| { | |
| name: 'Andros Town Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-NS', | |
| iata_code: 'ASD', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Congo Town Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-SA', | |
| iata_code: 'TZN', | |
| municipality: 'Andros' | |
| }, | |
| { | |
| name: 'Leonard M Thompson International Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-CO', | |
| iata_code: 'MHH', | |
| municipality: 'Marsh Harbour' | |
| }, | |
| { | |
| name: 'San Andros Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-NS', | |
| iata_code: 'SAQ', | |
| municipality: 'Andros Island' | |
| }, | |
| { | |
| name: 'Spring Point Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-AK', | |
| iata_code: 'AXP', | |
| municipality: 'Spring Point' | |
| }, | |
| { | |
| name: 'Treasure Cay Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-CO', | |
| iata_code: 'TCB', | |
| municipality: 'Treasure Cay' | |
| }, | |
| { | |
| name: 'Walkers Cay Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-NO', | |
| iata_code: 'WKR', | |
| municipality: 'Walkers Cay' | |
| }, | |
| { | |
| name: 'Chub Cay Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-NS', | |
| iata_code: 'CCZ', | |
| municipality: '' | |
| }, | |
| { | |
| name: 'Great Harbour Cay Airport', | |
| iso_country: 'BS', | |
| country_name: 'Bahamas', | |
| iso_region: 'BS-BY', | |
| iata_code: 'G |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment