From f2b06805c09cb086628455c44019739beab96a63 Mon Sep 17 00:00:00 2001 From: William French Date: Tue, 3 Mar 2026 12:32:33 -0800 Subject: [PATCH] feat: Migrates the deckgl-arclayer sample to js-api-samples. --- samples/deckgl-arclayer/README.md | 41 + samples/deckgl-arclayer/index.html | 22 + samples/deckgl-arclayer/index.ts | 53 + samples/deckgl-arclayer/package.json | 17 + .../public/ne_10m_airports.geojson | 16934 ++++++++++++++++ samples/deckgl-arclayer/style.css | 25 + samples/deckgl-arclayer/tsconfig.json | 18 + 7 files changed, 17110 insertions(+) create mode 100644 samples/deckgl-arclayer/README.md create mode 100644 samples/deckgl-arclayer/index.html create mode 100644 samples/deckgl-arclayer/index.ts create mode 100644 samples/deckgl-arclayer/package.json create mode 100644 samples/deckgl-arclayer/public/ne_10m_airports.geojson create mode 100644 samples/deckgl-arclayer/style.css create mode 100644 samples/deckgl-arclayer/tsconfig.json diff --git a/samples/deckgl-arclayer/README.md b/samples/deckgl-arclayer/README.md new file mode 100644 index 00000000..6e96ce7e --- /dev/null +++ b/samples/deckgl-arclayer/README.md @@ -0,0 +1,41 @@ +# Google Maps JavaScript Sample + +## deckgl-arclayer + +This example uses arcs to show curved point-to-point connections between airports and the city of Prague. + +## Setup + +### Before starting run: + +`npm i` + +### Run an example on a local web server + +`cd samples/deckgl-arclayer` +`npm start` + +### Build an individual example + +`cd samples/deckgl-arclayer` +`npm run build` + +From 'samples': + +`npm run build --workspace=deckgl-arclayer/` + +### Build all of the examples. + +From 'samples': + +`npm run build-all` + +### Run lint to check for problems + +`cd samples/deckgl-arclayer` +`npx eslint index.ts` + +## Feedback + +For feedback related to this sample, please open a new issue on +[GitHub](https://github.com/googlemaps-samples/js-api-samples/issues). diff --git a/samples/deckgl-arclayer/index.html b/samples/deckgl-arclayer/index.html new file mode 100644 index 00000000..24308331 --- /dev/null +++ b/samples/deckgl-arclayer/index.html @@ -0,0 +1,22 @@ + + + + + + deck.gl ArcLayer + + + + + + + + + + + diff --git a/samples/deckgl-arclayer/index.ts b/samples/deckgl-arclayer/index.ts new file mode 100644 index 00000000..542001bd --- /dev/null +++ b/samples/deckgl-arclayer/index.ts @@ -0,0 +1,53 @@ +/** + * @license + * Copyright 2026 Google LLC. + * SPDX-License-Identifier: Apache-2.0 + */ + +// [START maps_deckgl_arclayer] +import { GoogleMapsOverlay } from '@deck.gl/google-maps'; +import { ArcLayer } from '@deck.gl/layers'; +import type * as GeoJSON from 'geojson'; + +type Properties = { scalerank: number }; +type Feature = GeoJSON.Feature; +type Data = GeoJSON.FeatureCollection; + +//let map; + +async function initMap() { + // Request needed libraries. + (await google.maps.importLibrary('maps')) as google.maps.MapsLibrary; + + // Get the gmp-map element. + const mapElement = document.querySelector( + 'gmp-map' + ) as google.maps.MapElement; + + // Get the inner map. + const innerMap = mapElement.innerMap; + + innerMap.setTilt(30); // Set tilt after map initialization. + + const flightsLayer = new ArcLayer({ + id: 'flights', + data: '/ne_10m_airports.geojson', // See public/ne_10m_airports.geojson + dataTransform: (data: any) => + data.features.filter((f: any) => f.properties.scalerank < 4), + getSourcePosition: () => [14.42076, 50.08804], // Prague + getTargetPosition: (f: Feature) => + f.geometry.coordinates as [number, number], + getSourceColor: [0, 128, 200], + getTargetColor: [0, 0, 80], + getWidth: 1, + }); + + const overlay = new GoogleMapsOverlay({ + layers: [flightsLayer], + }); + + overlay.setMap(innerMap); +} + +initMap(); +// [END maps_deckgl_arclayer] diff --git a/samples/deckgl-arclayer/package.json b/samples/deckgl-arclayer/package.json new file mode 100644 index 00000000..368773b7 --- /dev/null +++ b/samples/deckgl-arclayer/package.json @@ -0,0 +1,17 @@ +{ + "name": "@js-api-samples/deckgl-arclayer", + "version": "1.0.0", + "scripts": { + "build": "tsc && bash ../jsfiddle.sh deckgl-arclayer && bash ../app.sh deckgl-arclayer && bash ../docs.sh deckgl-arclayer && npm run build:vite --workspace=. && bash ../dist.sh deckgl-arclayer", + "test": "tsc && npm run build:vite --workspace=.", + "start": "tsc && vite build --base './' && vite", + "build:vite": "vite build --base './'", + "preview": "vite preview" + }, + "dependencies": { + "@deck.gl/core": "^9.2.10", + "@deck.gl/google-maps": "^9.2.10", + "@deck.gl/layers": "^9.2.10", + "deck.gl": "^9.2.10" + } +} diff --git a/samples/deckgl-arclayer/public/ne_10m_airports.geojson b/samples/deckgl-arclayer/public/ne_10m_airports.geojson new file mode 100644 index 00000000..8e6f22d0 --- /dev/null +++ b/samples/deckgl-arclayer/public/ne_10m_airports.geojson @@ -0,0 +1,16934 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "small", + "name": "Sahnewal", + "abbrev": "LUH", + "location": "terminal", + "gps_code": "VILD", + "iata_code": "LUH", + "wikipedia": "http://en.wikipedia.org/wiki/Sahnewal_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.9570722403652, 30.8503598561702] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Solapur", + "abbrev": "SSE", + "location": "terminal", + "gps_code": "VASL", + "iata_code": "SSE", + "wikipedia": "http://en.wikipedia.org/wiki/Solapur_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.9330597710755, 17.625415183635] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Birsa Munda", + "abbrev": "IXR", + "location": "terminal", + "gps_code": "VERC", + "iata_code": "IXR", + "wikipedia": "http://en.wikipedia.org/wiki/Birsa_Munda_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [85.3235970368767, 23.3177245989962] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Ahwaz", + "abbrev": "AWZ", + "location": "terminal", + "gps_code": "OIAW", + "iata_code": "AWZ", + "wikipedia": "http://en.wikipedia.org/wiki/Ahwaz_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [48.7471065435931, 31.3431585560757] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid and military", + "name": "Gwalior", + "abbrev": "GWL", + "location": "terminal", + "gps_code": "VIGR", + "iata_code": "GWL", + "wikipedia": "http://en.wikipedia.org/wiki/Gwalior_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [78.2172186546348, 26.285487697937] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Hodeidah Int'l", + "abbrev": "HOD", + "location": "terminal", + "gps_code": "OYHD", + "iata_code": "HOD", + "wikipedia": "http://en.wikipedia.org/wiki/Hodeida_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [42.97109630194, 14.7552534413725] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Devi Ahilyabai Holkar Int'l", + "abbrev": "IDR", + "location": "terminal", + "gps_code": "VAID", + "iata_code": "IDR", + "wikipedia": "http://en.wikipedia.org/wiki/Devi_Ahilyabai_Holkar_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.8092915005895, 22.727749187571] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Gandhinagar", + "abbrev": "ISK", + "location": "ramp", + "gps_code": "VANR", + "iata_code": "ISK", + "wikipedia": "http://en.wikipedia.org/wiki/Gandhinagar_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.8105674924689, 19.9660205672806] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "major and military", + "name": "Chandigarh Int'l", + "abbrev": "IXC", + "location": "terminal", + "gps_code": "VICG", + "iata_code": "IXC", + "wikipedia": "http://en.wikipedia.org/wiki/Chandigarh_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [76.8017261105242, 30.6707248949667] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Aurangabad", + "abbrev": "IXU", + "location": "terminal", + "gps_code": "VAAU", + "iata_code": "IXU", + "wikipedia": "http://en.wikipedia.org/wiki/Aurangabad_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.3958432922005, 19.8672969621082] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid and military", + "name": "Faisalabad Int'l", + "abbrev": "LYP", + "location": "terminal", + "gps_code": "OPFA", + "iata_code": "LYP", + "wikipedia": "http://en.wikipedia.org/wiki/Faisalabad_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [72.9878190922305, 31.3627435480862] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Omsk Tsentralny", + "abbrev": "OMS", + "location": "terminal", + "gps_code": "UNOO", + "iata_code": "OMS", + "wikipedia": "http://en.wikipedia.org/wiki/Omsk_Tsentralny_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.3163595376585, 54.9576482934059] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Novosibirsk Tolmachev", + "abbrev": "OVB", + "location": "terminal", + "gps_code": "UNNT", + "iata_code": "OVB", + "wikipedia": "http://en.wikipedia.org/wiki/Tolmachevo_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [82.6671524525865, 55.0095847136264] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid and military", + "name": "Zaporozhye Int'l", + "abbrev": "OZH", + "location": "runway", + "gps_code": "UKDE", + "iata_code": "OZH", + "wikipedia": "http://en.wikipedia.org/wiki/Zaporizhia_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [35.3018728575279, 47.8732635579023] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Simpang Tiga", + "abbrev": "PKU", + "location": "terminal", + "gps_code": "WIBB", + "iata_code": "PKU", + "wikipedia": "http://en.wikipedia.org/wiki/Sultan_Syarif_Qasim_II_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [101.446569298441, 0.464600872998505] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Rota Int'l", + "abbrev": "ROP", + "location": "terminal", + "gps_code": "PGRO", + "iata_code": "ROP", + "wikipedia": "http://en.wikipedia.org/wiki/Rota_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [145.243980298582, 14.1717712971216] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Surgut", + "abbrev": "SGC", + "location": "terminal", + "gps_code": "USRR", + "iata_code": "SGC", + "wikipedia": "http://en.wikipedia.org/wiki/Surgut_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.4084964764375, 61.3401672194481] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Tiruchirappalli", + "abbrev": "TRZ", + "location": "terminal", + "gps_code": "VOTR", + "iata_code": "TRZ", + "wikipedia": "http://en.wikipedia.org/wiki/Tiruchirappalli_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [78.7089578747476, 10.7603571306554] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Turbat Int'l", + "abbrev": "TUK", + "location": "terminal", + "gps_code": "OPTU", + "iata_code": "TUK", + "wikipedia": "http://en.wikipedia.org/wiki/Turbat_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [63.0279333519181, 25.988794590011] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Quetta Int'l", + "abbrev": "UET", + "location": "terminal", + "gps_code": "OPQT", + "iata_code": "UET", + "wikipedia": "http://en.wikipedia.org/wiki/Quetta_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [66.9487311480949, 30.249043186181] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Zahedan Int'l", + "abbrev": "ZAH", + "location": "terminal", + "gps_code": "OIZH", + "iata_code": "ZAH", + "wikipedia": "http://en.wikipedia.org/wiki/Zahedan_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [60.900708564915, 29.4752941956573] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid and military", + "name": "Abdul Rachman Saleh", + "abbrev": "MLG", + "location": "ramp", + "gps_code": "WARA", + "iata_code": "MLG", + "wikipedia": "http://en.wikipedia.org/wiki/Abdul_Rachman_Saleh_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [112.711418617258, -7.92998002840567] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Barnaul", + "abbrev": "BAX", + "location": "ramp", + "gps_code": "UNBB", + "iata_code": "BAX", + "wikipedia": "http://en.wikipedia.org/wiki/Barnaul_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [83.5504532124038, 53.3633850813046] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "military mid", + "name": "Adampur", + "abbrev": "VIAX", + "location": "runway", + "gps_code": "VIAX", + "iata_code": null, + "wikipedia": null, + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.7584828456005, 31.4329422397715] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "military", + "name": "Bareilly", + "abbrev": "VIBY", + "location": "runway", + "gps_code": "VIBY", + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/Bareilly_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [79.452002687657, 28.4218087161144] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "small", + "name": "Dhamial", + "abbrev": "OPQS", + "location": "runway", + "gps_code": "OPQS", + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/Dhamial_Army_Airbase", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.0320498392002, 33.5614146278861] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "major", + "name": "Cheongju Int'l", + "abbrev": "CJJ", + "location": "terminal", + "gps_code": "RKTU", + "iata_code": "CJJ", + "wikipedia": "http://en.wikipedia.org/wiki/Cheongju_International_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [127.495916124681, 36.7220227766673] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid and military", + "name": "Gwangju", + "abbrev": "KWJ", + "location": "terminal", + "gps_code": "RKJJ", + "iata_code": "KWJ", + "wikipedia": "http://en.wikipedia.org/wiki/Gwangju_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [126.810839481226, 35.1400051390198] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Daegu Int'l", + "abbrev": "TAE", + "location": "terminal", + "gps_code": "RKTN", + "iata_code": "TAE", + "wikipedia": "http://en.wikipedia.org/wiki/Daegu_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [128.637537699933, 35.8999277969087] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Ulsan", + "abbrev": "USN", + "location": "terminal", + "gps_code": "RKPU", + "iata_code": "USN", + "wikipedia": "http://en.wikipedia.org/wiki/Ulsan_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [129.355731047528, 35.5928957527107] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Radin Inten II", + "abbrev": "WIIT", + "location": "terminal", + "gps_code": "WIAT", + "iata_code": "TKG", + "wikipedia": "http://en.wikipedia.org/wiki/Radin_Inten_II_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [105.176060419161, -5.242566777132] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "military", + "name": "Allahabad", + "abbrev": "IXD", + "location": "ramp", + "gps_code": "VIAL", + "iata_code": "IXD", + "wikipedia": "http://en.wikipedia.org/wiki/Allahabad_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [81.7317271462187, 25.443522027821] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 9, + "type": "mid", + "name": "Chelyabinsk", + "abbrev": "CEK", + "location": "terminal", + "gps_code": "USCC", + "iata_code": "CEK", + "wikipedia": "http://en.wikipedia.org/wiki/Chelyabinsk_Airport", + "natlscale": 8, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [61.5122589740201, 55.2977919496055] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military mid", + "name": "Tainan", + "abbrev": "TNN", + "location": "ramp", + "gps_code": "RCNN", + "iata_code": "TNN", + "wikipedia": "http://en.wikipedia.org/wiki/Tainan_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [120.209733318093, 22.950667918347] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military mid", + "name": "Taichung", + "abbrev": "RMQ", + "location": "ramp", + "gps_code": "RCMQ", + "iata_code": "RMQ", + "wikipedia": "http://en.wikipedia.org/wiki/Taichung_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [120.630703547584, 24.2666555567115] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Rotterdam The Hague", + "abbrev": "RTM", + "location": "terminal", + "gps_code": "EHRD", + "iata_code": "RTM", + "wikipedia": "http://en.wikipedia.org/wiki/Rotterdam_The_Hague_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [4.43384434962877, 51.9491301899382] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Voronezh-Chertovitskoye", + "abbrev": "VOZ", + "location": "terminal", + "gps_code": "UUOO", + "iata_code": "VOZ", + "wikipedia": "http://en.wikipedia.org/wiki/Voronezh_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.2254496447973, 51.8126171268344] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Liverpool John Lennon", + "abbrev": "LPL", + "location": "ramp", + "gps_code": "EGGP", + "iata_code": "LPL", + "wikipedia": "http://en.wikipedia.org/wiki/Liverpool_John_Lennon_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.85862065784938, 53.3363751054422] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Vishakapatnam", + "abbrev": "VTZ", + "location": "terminal", + "gps_code": "VEVZ", + "iata_code": "VTZ", + "wikipedia": "http://en.wikipedia.org/wiki/Visakhapatnam_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [83.2235216387465, 17.7279577384364] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Sultan Hasanuddin Int'l", + "abbrev": "UPG", + "location": "terminal", + "gps_code": "WAAA", + "iata_code": "UPG", + "wikipedia": "http://en.wikipedia.org/wiki/Sultan_Hasanuddin_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [119.545691342151, -5.05893689455779] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Vava'u Int'l", + "abbrev": "VAV", + "location": "terminal", + "gps_code": "NFTV", + "iata_code": "VAV", + "wikipedia": "http://en.wikipedia.org/wiki/Vava'u_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-173.968093944159, -18.5860058550654] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Newcastle Int'l", + "abbrev": "NCL", + "location": "terminal", + "gps_code": "EGNT", + "iata_code": "NCL", + "wikipedia": "http://en.wikipedia.org/wiki/Newcastle_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.71034578407216, 55.037084860802] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Goloson Int'l", + "abbrev": "LCE", + "location": "terminal", + "gps_code": "MHLC", + "iata_code": "LCE", + "wikipedia": "http://en.wikipedia.org/wiki/Golos%C3%B3n_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.8514685020011, 15.7451596659126] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Madinah Int'l", + "abbrev": "MED", + "location": "terminal", + "gps_code": "OEMA", + "iata_code": "MED", + "wikipedia": "http://en.wikipedia.org/wiki/Prince_Mohammad_Bin_Abdulaziz_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.6991359560417, 24.5442339605661] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Mirabel Int'l", + "abbrev": "YMX", + "location": "terminal", + "gps_code": "CYMX", + "iata_code": "YMX", + "wikipedia": "http://en.wikipedia.org/wiki/Montr%C3%A9al-Mirabel_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.0287382984814, 45.6832250979267] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Palanga Int'l", + "abbrev": "PLQ", + "location": "terminal", + "gps_code": "EYPA", + "iata_code": "PLQ", + "wikipedia": "http://en.wikipedia.org/wiki/Palanga_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [21.0974463986251, 55.9713426235358] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Jaipur Int'l", + "abbrev": "JAI", + "location": "terminal", + "gps_code": "VIJP", + "iata_code": "JAI", + "wikipedia": "http://en.wikipedia.org/wiki/Jaipur_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.8010104192668, 26.8211798100605] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sonari", + "abbrev": "IXW", + "location": "terminal", + "gps_code": "VEJS", + "iata_code": "IXW", + "wikipedia": "http://en.wikipedia.org/wiki/Sonari_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [86.1724662363776, 22.8154145110242] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Yenisehir", + "abbrev": "YEI", + "location": "ramp", + "gps_code": "LTBR", + "iata_code": "YEI", + "wikipedia": "http://en.wikipedia.org/wiki/Yeni%C5%9Fehir_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [29.54492, 40.2555395007473] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Sakirpasa", + "abbrev": "ADA", + "location": "terminal", + "gps_code": "LTAF", + "iata_code": "ADA", + "wikipedia": "http://en.wikipedia.org/wiki/Adana_%C5%9Eakirpa%C5%9Fa_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [35.2969614268338, 36.9852090641795] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kodiak", + "abbrev": "ADQ", + "location": "ramp", + "gps_code": "PADQ", + "iata_code": "ADQ", + "wikipedia": "http://en.wikipedia.org/wiki/Kodiak_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-152.485638515235, 57.7485921070483] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Amarillo Int'l", + "abbrev": "AMA", + "location": "terminal", + "gps_code": "KAMA", + "iata_code": "AMA", + "wikipedia": "http://en.wikipedia.org/wiki/Rick_Husband_Amarillo_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.705352772697, 35.2184031919398] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Alice Springs", + "abbrev": "ASP", + "location": "terminal", + "gps_code": "YBAS", + "iata_code": "ASP", + "wikipedia": "http://en.wikipedia.org/wiki/Alice_Springs_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [133.902918, -23.801968] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid and military", + "name": "Raja Sansi Int'l", + "abbrev": "ATQ", + "location": "terminal", + "gps_code": "VIAR", + "iata_code": "ATQ", + "wikipedia": "http://en.wikipedia.org/wiki/Raja_Sansi_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [74.8071559719824, 31.7068220258888] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Biju Patnaik", + "abbrev": "BBI", + "location": "terminal", + "gps_code": "VEBS", + "iata_code": "BBI", + "wikipedia": "http://en.wikipedia.org/wiki/Biju_Patnaik_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [85.8168899544429, 20.2526659754734] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Bethel", + "abbrev": "BET", + "location": "runway", + "gps_code": "PABE", + "iata_code": "BET", + "wikipedia": "http://en.wikipedia.org/wiki/Bethel_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-161.83898695944, 60.7787379834088] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Palonegro", + "abbrev": "BGA", + "location": "terminal", + "gps_code": "SKBG", + "iata_code": "BGA", + "wikipedia": "http://en.wikipedia.org/wiki/Palonegro_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.1809207725361, 7.12770915402685] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Birmingham Int'l", + "abbrev": "BHM", + "location": "terminal", + "gps_code": "KBHM", + "iata_code": "BHM", + "wikipedia": "http://en.wikipedia.org/wiki/Birmingham_International_Airport_(US)", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.7523773615462, 33.5618672828058] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Broken Hill", + "abbrev": "BHQ", + "location": "terminal", + "gps_code": "YBHI", + "iata_code": "BHQ", + "wikipedia": "http://en.wikipedia.org/wiki/Broken_Hill_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [141.470407303097, -31.998996737463] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Logan Int'l", + "abbrev": "BIL", + "location": "terminal", + "gps_code": "KBIL", + "iata_code": "BIL", + "wikipedia": "http://en.wikipedia.org/wiki/Billings_Logan_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-108.536929388125, 45.8036855715278] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Bismarck Muni.", + "abbrev": "BIS", + "location": "terminal", + "gps_code": "KBIS", + "iata_code": "BIS", + "wikipedia": "http://en.wikipedia.org/wiki/Bismarck_Municipal_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.757471303717, 46.7751066661614] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Del Bajio Int'l", + "abbrev": "BJX", + "location": "terminal", + "gps_code": "MMLO", + "iata_code": "BJX", + "wikipedia": "http://en.wikipedia.org/wiki/Del_Baj%C3%ADo_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.478753382467, 20.9858871211938] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Benin", + "abbrev": "BNI", + "location": "terminal", + "gps_code": "DNBE", + "iata_code": "BNI", + "wikipedia": "http://en.wikipedia.org/wiki/Benin_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [5.603682560067, 6.31716689207818] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Bourgas", + "abbrev": "BOJ", + "location": "ramp", + "gps_code": "LBBG", + "iata_code": "BOJ", + "wikipedia": "http://en.wikipedia.org/wiki/Burgas_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [27.5164093662953, 42.5670835487702] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Bremen", + "abbrev": "BRE", + "location": "terminal", + "gps_code": "EDDW", + "iata_code": "BRE", + "wikipedia": "http://en.wikipedia.org/wiki/Bremen_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [8.7858617703132, 53.052287104156] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Jacinto Lara Int'l", + "abbrev": "BRM", + "location": "terminal", + "gps_code": "SVBM", + "iata_code": "BRM", + "wikipedia": "http://en.wikipedia.org/wiki/Jacinto_Lara_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.356102, 10.0453] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Brownsville-South Padre Island Int'l", + "abbrev": "BRO", + "location": "terminal", + "gps_code": "KBRO", + "iata_code": "BRO", + "wikipedia": "http://en.wikipedia.org/wiki/Brownsville/South_Padre_Island_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.431765340232, 25.9062743545347] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Bristol Int'l", + "abbrev": "BRS", + "location": "terminal", + "gps_code": "EGGD", + "iata_code": "BRS", + "wikipedia": "http://en.wikipedia.org/wiki/Bristol_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.71086469134308, 51.3862934189148] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Baton Rouge Metro", + "abbrev": "BTR", + "location": "terminal", + "gps_code": "KBTR", + "iata_code": "BTR", + "wikipedia": "http://en.wikipedia.org/wiki/Baton_Rouge_Metropolitan_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-91.1567544048105, 30.5326138040586] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Bratislava-M.R. Stefanik", + "abbrev": "BTS", + "location": "terminal", + "gps_code": "LZIB", + "iata_code": "BTS", + "wikipedia": "http://en.wikipedia.org/wiki/M._R._%C5%A0tef%C3%A1nik_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [17.1999850022208, 48.1698379062535] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Burlington Int'l", + "abbrev": "BTV", + "location": "terminal", + "gps_code": "KBTV", + "iata_code": "BTV", + "wikipedia": "http://en.wikipedia.org/wiki/Burlington_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.1550787790668, 44.4692066040732] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Columbia Metro", + "abbrev": "CAE", + "location": "terminal", + "gps_code": "KCAE", + "iata_code": "CAE", + "wikipedia": "http://en.wikipedia.org/wiki/Columbia_Metropolitan_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.1093352429377, 33.9342054584275] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Calicut Int'l", + "abbrev": "CCJ", + "location": "terminal", + "gps_code": "VOCL", + "iata_code": "CCJ", + "wikipedia": "http://en.wikipedia.org/wiki/Calicut_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.950993063051, 11.1395520526064] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Cocos (Keeling) Islands", + "abbrev": "CCK", + "location": "terminal", + "gps_code": "YPCC", + "iata_code": "CCK", + "wikipedia": "http://en.wikipedia.org/wiki/Cocos_(Keeling)_Islands_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [96.8287472144207, -12.1851585953293] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Corfu Int'l (Ioannis Kapodistrias)", + "abbrev": "CFU", + "location": "terminal", + "gps_code": "LGKR", + "iata_code": "CFU", + "wikipedia": "http://en.wikipedia.org/wiki/Corfu_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [19.9147561641662, 39.6067554505259] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Changchun Longjia Int'l", + "abbrev": "CGQ", + "location": "terminal", + "gps_code": "ZYCC", + "iata_code": "CGQ", + "wikipedia": "http://en.wikipedia.org/wiki/Changchun_Longjia_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [125.690456812998, 43.993011479577] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major and military", + "name": "Charleston Int'l", + "abbrev": "CHS", + "location": "terminal", + "gps_code": "KCHS", + "iata_code": "CHS", + "wikipedia": "http://en.wikipedia.org/wiki/Charleston_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.0369337438262, 32.8845301562965] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Coimbatore", + "abbrev": "CJB", + "location": "terminal", + "gps_code": "VOCB", + "iata_code": "CJB", + "wikipedia": "http://en.wikipedia.org/wiki/Coimbatore_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [77.038893772262, 11.0301415125983] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Someseni", + "abbrev": "CLJ", + "location": "ramp", + "gps_code": "LRCL", + "iata_code": "CLJ", + "wikipedia": "http://en.wikipedia.org/wiki/Cluj-Napoca_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [23.6869812680486, 46.7826626340243] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Ignacio Agramonte", + "abbrev": "CMW", + "location": "terminal", + "gps_code": "MUCM", + "iata_code": "CMW", + "wikipedia": "http://en.wikipedia.org/wiki/Ignacio_Agramonte_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.8451039935167, 21.4247037281961] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Casper/Natrona County Int'l", + "abbrev": "CPR", + "location": "terminal", + "gps_code": "KCPR", + "iata_code": "CPR", + "wikipedia": "http://en.wikipedia.org/wiki/Casper/Natrona_County_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.464444809692, 42.8971900483006] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Clark Int'l", + "abbrev": "CRK", + "location": "ramp", + "gps_code": "RPLC", + "iata_code": "CRK", + "wikipedia": "http://en.wikipedia.org/wiki/Clark_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [120.550770223914, 15.1876422423888] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major and military", + "name": "Yeager", + "abbrev": "CRW", + "location": "terminal", + "gps_code": "KCRW", + "iata_code": "CRW", + "wikipedia": "http://en.wikipedia.org/wiki/Yeager_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.5964164667526, 38.3705914372865] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Catania Fontanarossa", + "abbrev": "CTA", + "location": "terminal", + "gps_code": "LICC", + "iata_code": "CTA", + "wikipedia": "http://en.wikipedia.org/wiki/Catania-Fontanarossa_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [15.0674605007053, 37.470072800341] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Chetumal Int'l", + "abbrev": "CTM", + "location": "terminal", + "gps_code": "MMCM", + "iata_code": "CTM", + "wikipedia": "http://en.wikipedia.org/wiki/Chetumal_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.3242600415365, 18.506434233376] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Cardiff", + "abbrev": "CWL", + "location": "terminal", + "gps_code": "EGFF", + "iata_code": "CWL", + "wikipedia": "http://en.wikipedia.org/wiki/Cardiff_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.33956876429118, 51.3986220911017] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Gerrard Smith", + "abbrev": "CYB", + "location": "terminal", + "gps_code": "MWCB", + "iata_code": "CYB", + "wikipedia": "http://en.wikipedia.org/wiki/Gerrard_Smith_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.879461638003, 19.6898653962844] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Cozumel Int'l", + "abbrev": "CZM", + "location": "terminal", + "gps_code": "MMCZ", + "iata_code": "CZM", + "wikipedia": "http://en.wikipedia.org/wiki/Cozumel_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.9304064070436, 20.5115543771647] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "James M. Cox Dayton Int'l", + "abbrev": "DAY", + "location": "terminal", + "gps_code": "KDAY", + "iata_code": "DAY", + "wikipedia": "http://en.wikipedia.org/wiki/Dayton_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.2204594238102, 39.8990402865362] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Dubbo", + "abbrev": "DBO", + "location": "approximate", + "gps_code": "YSDU", + "iata_code": "DBO", + "wikipedia": "http://en.wikipedia.org/wiki/Dubbo_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [148.569717, -32.218681] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Washington Nat'l", + "abbrev": "DCA", + "location": "terminal", + "gps_code": "KDCA", + "iata_code": "DCA", + "wikipedia": "http://en.wikipedia.org/wiki/Ronald_Reagan_Washington_National_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.0433373925631, 38.8537162012123] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Durango Int'l", + "abbrev": "DGO", + "location": "terminal", + "gps_code": "MMDO", + "iata_code": "DGO", + "wikipedia": "http://en.wikipedia.org/wiki/General_Guadalupe_Victoria_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.533846024964, 24.1261948326183] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Voloskoye", + "abbrev": "DNK", + "location": "terminal", + "gps_code": "UKDD", + "iata_code": "DNK", + "wikipedia": "http://en.wikipedia.org/wiki/Dnipropetrovsk_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [35.0939060224975, 48.3675718021117] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Donetsk", + "abbrev": "DOK", + "location": "terminal", + "gps_code": "UKCC", + "iata_code": "DOK", + "wikipedia": "http://en.wikipedia.org/wiki/Donetsk_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [37.7448085572103, 48.0691671285582] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Santa Bernardina Int'l", + "abbrev": "DZO", + "location": "runway", + "gps_code": "SUDU", + "iata_code": "DZO", + "wikipedia": "http://en.wikipedia.org/wiki/Santa_Bernardina_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.4992636213744, -33.3591084475501] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Edinburgh Int'l", + "abbrev": "EDI", + "location": "terminal", + "gps_code": "EGPH", + "iata_code": "EDI", + "wikipedia": "http://en.wikipedia.org/wiki/Edinburgh_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.36428468513555, 55.9485540113639] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Terrance B. Lettsome Int'l", + "abbrev": "EIS", + "location": "terminal", + "gps_code": "TUPJ", + "iata_code": "EIS", + "wikipedia": "http://en.wikipedia.org/wiki/Terrance_B._Lettsome_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.5371514365795, 18.4443618557983] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Elko Reg.", + "abbrev": "EKO", + "location": "terminal", + "gps_code": "KEKO", + "iata_code": "EKO", + "wikipedia": "http://en.wikipedia.org/wiki/Elko_Regional_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.786479232249, 40.8276058815225] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Ensenada", + "abbrev": "ESE", + "location": "ramp", + "gps_code": "MMES", + "iata_code": "ESE", + "wikipedia": "http://en.wikipedia.org/wiki/Ensenada_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.595724400418, 31.7977139760569] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Vagar", + "abbrev": "FAE", + "location": "approximate", + "gps_code": "EKVG", + "iata_code": "FAE", + "wikipedia": "http://en.wikipedia.org/wiki/V%C3%A1gar_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.2708, 62.0625] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid and military", + "name": "Hector Int'l", + "abbrev": "FAR", + "location": "terminal", + "gps_code": "KFAR", + "iata_code": "FAR", + "wikipedia": "http://en.wikipedia.org/wiki/Hector_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.8254561269675, 46.9198178811323] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Fresno Yosemite Int'l", + "abbrev": "FAT", + "location": "terminal", + "gps_code": "KFAT", + "iata_code": "FAT", + "wikipedia": "http://en.wikipedia.org/wiki/Fresno_Yosemite_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.720001323576, 36.7698128373959] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Flagstaff Pulliam", + "abbrev": "FLG", + "location": "terminal", + "gps_code": "KFLG", + "iata_code": "FLG", + "wikipedia": "http://en.wikipedia.org/wiki/Flagstaff_Pulliam_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.674656171675, 35.1389116757976] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Mundo Maya Int'l", + "abbrev": "FRS", + "location": "terminal", + "gps_code": "MGTK", + "iata_code": "FRS", + "wikipedia": "http://en.wikipedia.org/wiki/Mundo_Maya_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.8778404226508, 16.9149741642226] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sioux Falls Reg.", + "abbrev": "FSD", + "location": "terminal", + "gps_code": "KFSD", + "iata_code": "FSD", + "wikipedia": "http://en.wikipedia.org/wiki/Sioux_Falls_Regional_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.7313831017541, 43.5801934972763] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Spokane Int'l", + "abbrev": "GEG", + "location": "terminal", + "gps_code": "KGEG", + "iata_code": "GEG", + "wikipedia": "http://en.wikipedia.org/wiki/Spokane_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.536836628585, 47.6254781278368] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Exuma Int'l", + "abbrev": "GGT", + "location": "terminal", + "gps_code": "MYEF", + "iata_code": "GGT", + "wikipedia": "http://en.wikipedia.org/wiki/Exuma_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.872613085304, 23.5638829069259] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Gibraltar", + "abbrev": "GIB", + "location": "runway", + "gps_code": "LXGB", + "iata_code": "GIB", + "wikipedia": "http://en.wikipedia.org/wiki/Gibraltar_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.34677180033388, 36.1512747504173] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Gerald R. Ford Int'l", + "abbrev": "GRR", + "location": "terminal", + "gps_code": "KGRR", + "iata_code": "GRR", + "wikipedia": "http://en.wikipedia.org/wiki/Gerald_R._Ford_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.529573207274, 42.8847776020908] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Triad Int'l", + "abbrev": "GSO", + "location": "terminal", + "gps_code": "KGSO", + "iata_code": "GSO", + "wikipedia": "http://en.wikipedia.org/wiki/Piedmont_Triad_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.9364867577484, 36.1053781998932] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Great Falls Int'l", + "abbrev": "GTF", + "location": "terminal", + "gps_code": "KGTF", + "iata_code": "GTF", + "wikipedia": "http://en.wikipedia.org/wiki/Great_Falls_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.35668472784, 47.482270729263] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Gaziantep Oguzeli Int'l", + "abbrev": "GZT", + "location": "terminal", + "gps_code": "LTAJ", + "iata_code": "GZT", + "wikipedia": "http://en.wikipedia.org/wiki/O%C4%9Fuzeli_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [37.47380325219, 36.9453633446875] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Hubli", + "abbrev": "HBX", + "location": "terminal", + "gps_code": "VAHB", + "iata_code": "HBX", + "wikipedia": "http://en.wikipedia.org/wiki/Hubli_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.0863155680281, 15.3591833386229] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Hat Yai Int'l", + "abbrev": "HDY", + "location": "terminal", + "gps_code": "VTSS", + "iata_code": "HDY", + "wikipedia": "http://en.wikipedia.org/wiki/Hat_Yai_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [100.393751274671, 6.93634231940664] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Hefei-Luogang", + "abbrev": "HFE", + "location": "ramp", + "gps_code": "ZSOF", + "iata_code": "HFE", + "wikipedia": "http://en.wikipedia.org/wiki/Hefei_Luogang_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [117.304197015888, 31.7798576795778] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Hurghada Int'l", + "abbrev": "HRG", + "location": "terminal", + "gps_code": "HEGN", + "iata_code": "HRG", + "wikipedia": "http://en.wikipedia.org/wiki/Hurghada_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [33.8071606414118, 27.1804260918186] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Kharkov Int'l", + "abbrev": "HRK", + "location": "ramp", + "gps_code": "UKHH", + "iata_code": "HRK", + "wikipedia": "http://en.wikipedia.org/wiki/Kharkiv_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [36.2822010773503, 49.9215360631551] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Huntsville Int'l", + "abbrev": "HSV", + "location": "terminal", + "gps_code": "KHSV", + "iata_code": "HSV", + "wikipedia": "http://en.wikipedia.org/wiki/Huntsville_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.7749430563373, 34.6483344609319] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Ibadan", + "abbrev": "IBA", + "location": "ramp", + "gps_code": "DNIB", + "iata_code": "IBA", + "wikipedia": "http://en.wikipedia.org/wiki/Ibadan_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [3.9738133433229, 7.36034397269393] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Kansas City Int'l", + "abbrev": "ICT", + "location": "terminal", + "gps_code": "KICT", + "iata_code": "ICT", + "wikipedia": "http://en.wikipedia.org/wiki/Kansas_City_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.4287387683976, 37.6529279603903] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Wilmington Int'l", + "abbrev": "ILM", + "location": "terminal", + "gps_code": "KILM", + "iata_code": "ILM", + "wikipedia": "http://en.wikipedia.org/wiki/Wilmington_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.9103756560469, 34.2667840671996] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Ilorin Int'l", + "abbrev": "ILR", + "location": "terminal", + "gps_code": "DNIL", + "iata_code": "ILR", + "wikipedia": "http://en.wikipedia.org/wiki/Ilorin_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [4.49484038819935, 8.43537651935241] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Falls Int'l", + "abbrev": "INL", + "location": "terminal", + "gps_code": "KINL", + "iata_code": "INL", + "wikipedia": "http://en.wikipedia.org/wiki/Falls_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.3980027552794, 48.5659930848414] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Inverness", + "abbrev": "INV", + "location": "terminal", + "gps_code": "EGPE", + "iata_code": "INV", + "wikipedia": "http://en.wikipedia.org/wiki/Inverness_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.06359175587141, 57.5395002923424] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Imperial Cty.", + "abbrev": "IPL", + "location": "terminal", + "gps_code": "KIPL", + "iata_code": "IPL", + "wikipedia": "http://en.wikipedia.org/wiki/Imperial_County_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.57199556658, 32.8339586685524] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Jammu", + "abbrev": "IXJ", + "location": "terminal", + "gps_code": "VIJU", + "iata_code": "IXJ", + "wikipedia": "http://en.wikipedia.org/wiki/Jammu_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [74.8423077638915, 32.6810428886225] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Madurai", + "abbrev": "IXM", + "location": "terminal", + "gps_code": "VOMD", + "iata_code": "IXM", + "wikipedia": "http://en.wikipedia.org/wiki/Madurai_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [78.0911394937194, 9.83718627877566] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major and military", + "name": "Jodhpur", + "abbrev": "JDH", + "location": "terminal", + "gps_code": "VIJO", + "iata_code": "JDH", + "wikipedia": "http://en.wikipedia.org/wiki/Jodhpur_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.0505491895671, 26.2637623458351] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Jabalpur", + "abbrev": "JLR", + "location": "terminal", + "gps_code": "VAJB", + "iata_code": "JLR", + "wikipedia": "http://en.wikipedia.org/wiki/Jabalpur_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [80.0587438885277, 23.1845328746465] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kilimanjaro Int'l", + "abbrev": "JRO", + "location": "terminal", + "gps_code": "HTKJ", + "iata_code": "JRO", + "wikipedia": "http://en.wikipedia.org/wiki/Kilimanjaro_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [37.0651896067748, -3.42444495998178] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kaduna", + "abbrev": "KAD", + "location": "terminal", + "gps_code": "DNKA", + "iata_code": "KAD", + "wikipedia": "http://en.wikipedia.org/wiki/Kaduna_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [7.32525347407434, 10.6946192862391] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kananga", + "abbrev": "KGA", + "location": "terminal", + "gps_code": "FZUA", + "iata_code": "KGA", + "wikipedia": "http://en.wikipedia.org/wiki/Kananga_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [22.478333248269, -5.90016656227041] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kumasi", + "abbrev": "KMS", + "location": "terminal", + "gps_code": "DGSI", + "iata_code": "KMS", + "wikipedia": "http://en.wikipedia.org/wiki/Kumasi_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.59257526582362, 6.71460638750365] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Vina del Mar", + "abbrev": "KNA", + "location": "ramp", + "gps_code": "SCVM", + "iata_code": "KNA", + "wikipedia": "http://en.wikipedia.org/wiki/Vi%C3%B1a_del_Mar_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.4806025354969, -32.948391765136] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kanpur", + "abbrev": "KNU", + "location": "terminal", + "gps_code": "VIKA", + "iata_code": "KNU", + "wikipedia": "http://en.wikipedia.org/wiki/Kanpur_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [80.3675338772002, 26.4388334467042] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kona Int'l at Keahole", + "abbrev": "KOA", + "location": "terminal", + "gps_code": "PHKO", + "iata_code": "KOA", + "wikipedia": "http://en.wikipedia.org/wiki/Kona_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.040889471058, 19.7370991399442] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kirkwall", + "abbrev": "KOI", + "location": "ramp", + "gps_code": "EGPA", + "iata_code": "KOI", + "wikipedia": "http://en.wikipedia.org/wiki/Kirkwall_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.90137849524508, 58.9544288788304] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kota", + "abbrev": "KTU", + "location": "terminal", + "gps_code": "VIKO", + "iata_code": "KTU", + "wikipedia": "http://en.wikipedia.org/wiki/Kota_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [75.8504977944552, 25.1634187166743] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major and military", + "name": "Konya", + "abbrev": "KYA", + "location": "terminal", + "gps_code": "LTAN", + "iata_code": "KYA", + "wikipedia": "http://en.wikipedia.org/wiki/Konya_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [32.5756732669687, 37.9839945531695] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Blue Grass", + "abbrev": "LEX", + "location": "terminal", + "gps_code": "KLEX", + "iata_code": "LEX", + "wikipedia": "http://en.wikipedia.org/wiki/Blue_Grass_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.5982681918786, 38.0374273181372] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Lihue", + "abbrev": "LIH", + "location": "terminal", + "gps_code": "PHLI", + "iata_code": "LIH", + "wikipedia": "http://en.wikipedia.org/wiki/Lihu'e_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-159.349084290522, 21.9781243162088] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Little Rock National", + "abbrev": "LIT", + "location": "terminal", + "gps_code": "KLIT", + "iata_code": "LIT", + "wikipedia": "http://en.wikipedia.org/wiki/Little_Rock_National_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.2205881319289, 34.7284300415179] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Los Mochis", + "abbrev": "LMM", + "location": "ramp", + "gps_code": "MMLM", + "iata_code": "LMM", + "wikipedia": "http://en.wikipedia.org/wiki/Federal_del_Valle_del_Fuerte_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.082694645261, 25.688508826099] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Venustiano Carranza Int'l", + "abbrev": "LOV", + "location": "runway", + "gps_code": "MMMV", + "iata_code": "LOV", + "wikipedia": "http://en.wikipedia.org/wiki/Venustiano_Carranza_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.464960031751, 26.9553927160699] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Laredo Int'l", + "abbrev": "LRD", + "location": "terminal", + "gps_code": "KLRD", + "iata_code": "LRD", + "wikipedia": "http://en.wikipedia.org/wiki/Laredo_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.4556603976513, 27.5436657175825] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sumburgh", + "abbrev": "LSI", + "location": "runway", + "gps_code": "EGPB", + "iata_code": "LSI", + "wikipedia": "http://en.wikipedia.org/wiki/Sumburgh_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.28806068838754, 59.8766899598999] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Bassel Al-Assad Int'l", + "abbrev": "LTK", + "location": "terminal", + "gps_code": "OSLK", + "iata_code": "LTK", + "wikipedia": "http://en.wikipedia.org/wiki/Bassel_Al-Assad_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [35.9442407096663, 35.4073114596744] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "London Luton", + "abbrev": "LTN", + "location": "terminal", + "gps_code": "EGGW", + "iata_code": "LTN", + "wikipedia": "http://en.wikipedia.org/wiki/London_Luton_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.376227267397439, 51.8802952570969] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Svalbard Longyear", + "abbrev": "LYR", + "location": "terminal", + "gps_code": "ENSB", + "iata_code": "LYR", + "wikipedia": "http://en.wikipedia.org/wiki/Svalbard_Airport%2C_Longyear", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [15.495229, 78.246717] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sangster Int'l", + "abbrev": "MBJ", + "location": "runway", + "gps_code": "MKJS", + "iata_code": "MBJ", + "wikipedia": "http://en.wikipedia.org/wiki/Sangster_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.9183907635752, 18.5011549298249] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Mandalay Int'l", + "abbrev": "MDL", + "location": "terminal", + "gps_code": "VYMD", + "iata_code": "MDL", + "wikipedia": "http://en.wikipedia.org/wiki/Mandalay_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [95.9706535950217, 21.7055490680274] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Chicago Midway Int'l", + "abbrev": "MDW", + "location": "terminal", + "gps_code": "KMDW", + "iata_code": "MDW", + "wikipedia": "http://en.wikipedia.org/wiki/Chicago_Midway_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.7421266885612, 41.7883492597409] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid and military", + "name": "Eloy Alfaro Int'l", + "abbrev": "MEC", + "location": "runway", + "gps_code": "SEMT", + "iata_code": "MEC", + "wikipedia": "http://en.wikipedia.org/wiki/Manta_Air_Base", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.6833845995774, -0.949557002112883] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Montgomery Reg.", + "abbrev": "MGM", + "location": "terminal", + "gps_code": "KMGM", + "iata_code": "MGM", + "wikipedia": "http://en.wikipedia.org/wiki/Montgomery_Regional_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.3903074602686, 32.3045879909631] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Manchester-Boston Reg.", + "abbrev": "MHT", + "location": "terminal", + "gps_code": "KMHT", + "iata_code": "MHT", + "wikipedia": "http://en.wikipedia.org/wiki/Manchester-Boston_Regional_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.4375239091857, 42.9279139945886] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Maiduguri Int'l", + "abbrev": "DNMA", + "location": "terminal", + "gps_code": "DNMA", + "iata_code": "MIU", + "wikipedia": "http://en.wikipedia.org/wiki/Maiduguri_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [13.0851390162471, 11.8534713188527] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Mbuji Mayi", + "abbrev": "MJM", + "location": "terminal", + "gps_code": "FZWA", + "iata_code": "MJM", + "wikipedia": "http://en.wikipedia.org/wiki/Mbuji_Mayi_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [23.5721091989052, -6.12484541348812] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Minot Int'l", + "abbrev": "MOT", + "location": "terminal", + "gps_code": "KMOT", + "iata_code": "MOT", + "wikipedia": "http://en.wikipedia.org/wiki/Minot_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-101.2913855313, 48.2556049212839] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Missoula Int'l", + "abbrev": "MSO", + "location": "terminal", + "gps_code": "KMSO", + "iata_code": "MSO", + "wikipedia": "http://en.wikipedia.org/wiki/Missoula_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.083694923651, 46.9187604768831] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Gen R.S. Taboada Int'l", + "abbrev": "MXL", + "location": "terminal", + "gps_code": "MMML", + "iata_code": "MXL", + "wikipedia": "http://en.wikipedia.org/wiki/General_Rodolfo_S%C3%A1nchez_Taboada_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.247874047841, 32.6285643324607] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Malpensa", + "abbrev": "MXP", + "location": "terminal", + "gps_code": "LIMC", + "iata_code": "MXP", + "wikipedia": "http://en.wikipedia.org/wiki/Malpensa_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [8.71295953502437, 45.6274405140381] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Norfolk Island", + "abbrev": "NLK", + "location": "terminal", + "gps_code": "YSNF", + "iata_code": "NLK", + "wikipedia": "http://en.wikipedia.org/wiki/Norfolk_Island_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [167.943394116205, -29.0351592555275] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Nurnberg", + "abbrev": "NUE", + "location": "terminal", + "gps_code": "EDDN", + "iata_code": "NUE", + "wikipedia": "http://en.wikipedia.org/wiki/Nuremberg_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [11.0774179739096, 49.4945052170345] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Odessa Int'l", + "abbrev": "ODS", + "location": "terminal", + "gps_code": "UKOO", + "iata_code": "ODS", + "wikipedia": "http://en.wikipedia.org/wiki/Odessa_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [30.6768308310206, 46.4406268759106] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Gold Coast", + "abbrev": "OOL", + "location": "terminal", + "gps_code": "YBCG", + "iata_code": "OOL", + "wikipedia": "http://en.wikipedia.org/wiki/Gold_Coast_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [153.512876264303, -28.1665168540202] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Oran Es Senia", + "abbrev": "ORN", + "location": "terminal", + "gps_code": "DAOO", + "iata_code": "ORN", + "wikipedia": "http://en.wikipedia.org/wiki/Oran_Es_S%C3%A9nia_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.60679696443112, 35.6202747312735] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Lok Nayak Jaiprakash", + "abbrev": "PAT", + "location": "terminal", + "gps_code": "VEPT", + "iata_code": "PAT", + "wikipedia": "http://en.wikipedia.org/wiki/Lok_Nayak_Jayaprakash_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [85.0909021314663, 25.5944434295605] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Paysandu", + "abbrev": "PDU", + "location": "terminal", + "gps_code": "SUPU", + "iata_code": "PDU", + "wikipedia": "http://en.wikipedia.org/wiki/Paysand%C3%BA_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.0685346825257, -32.3614545292723] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Paphos Int'l", + "abbrev": "PFO", + "location": "ramp", + "gps_code": "LCPH", + "iata_code": "PFO", + "wikipedia": "http://en.wikipedia.org/wiki/Paphos_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [32.4832322064926, 34.7134012817335] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sultan Mahmud Badaruddin II", + "abbrev": "PLM", + "location": "terminal", + "gps_code": "WIPP", + "iata_code": "PLM", + "wikipedia": "http://en.wikipedia.org/wiki/Sultan_Mahmud_Badaruddin_II_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [104.699128326762, -2.89999345005997] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Polokwane Int'l", + "abbrev": "PTG", + "location": "terminal", + "gps_code": "FAPP", + "iata_code": "PTG", + "wikipedia": "http://en.wikipedia.org/wiki/Polokwane_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [29.4533403645644, -23.858986270166] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Punta Cana", + "abbrev": "PUJ", + "location": "terminal", + "gps_code": "MDPC", + "iata_code": "PUJ", + "wikipedia": "http://en.wikipedia.org/wiki/Punta_Cana_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.3632351074649, 18.563039033987] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Queretaro Int'l", + "abbrev": "QRO", + "location": "terminal", + "gps_code": "MMQT", + "iata_code": "QRO", + "wikipedia": "http://en.wikipedia.org/wiki/Quer%C3%A9taro_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.18735943003, 20.622466071278] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Rajkot", + "abbrev": "RAJ", + "location": "runway", + "gps_code": "VARK", + "iata_code": "RAJ", + "wikipedia": "http://en.wikipedia.org/wiki/Rajkot_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [70.7799548311565, 22.3092816988361] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Richmond Int'l", + "abbrev": "RIC", + "location": "terminal", + "gps_code": "KRIC", + "iata_code": "RIC", + "wikipedia": "http://en.wikipedia.org/wiki/Richmond_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.333119638113, 37.5082899750901] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Shah Makhdum", + "abbrev": "RJH", + "location": "terminal", + "gps_code": "VGRJ", + "iata_code": "RJH", + "wikipedia": "http://en.wikipedia.org/wiki/Shah_Makhdum_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [88.6138045704431, 24.4448068623035] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Greater Rochester Int'l", + "abbrev": "ROC", + "location": "terminal", + "gps_code": "KROC", + "iata_code": "ROC", + "wikipedia": "http://en.wikipedia.org/wiki/Greater_Rochester_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.6652445062197, 43.1275519826482] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Rockhampton", + "abbrev": "ROK", + "location": "terminal", + "gps_code": "YBRK", + "iata_code": "ROK", + "wikipedia": "http://en.wikipedia.org/wiki/Rockhampton_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [150.4789, -23.378599] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Rostov-on-Don", + "abbrev": "ROV", + "location": "terminal", + "gps_code": "URRR", + "iata_code": "ROV", + "wikipedia": "http://en.wikipedia.org/wiki/Rostov-on-Don_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.8035144445391, 47.2551119519754] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Saratov", + "abbrev": "RTW", + "location": "ramp", + "gps_code": "UWSS", + "iata_code": "RTW", + "wikipedia": "http://en.wikipedia.org/wiki/Saratov_Tsentralny_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [46.035023249891, 51.5606456508842] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Ramon Villeda Morales Int'l", + "abbrev": "SAP", + "location": "terminal", + "gps_code": "MHLM", + "iata_code": "SAP", + "wikipedia": "http://en.wikipedia.org/wiki/Ram%C3%B3n_Villeda_Morales_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.9272365125409, 15.4558630524883] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Santa Barbara Muni.", + "abbrev": "SBA", + "location": "terminal", + "gps_code": "KSBA", + "iata_code": "SBA", + "wikipedia": "http://en.wikipedia.org/wiki/Santa_Barbara_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.8366015808, 34.4257312978783] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Deadhorse", + "abbrev": "SCC", + "location": "ramp", + "gps_code": "PASC", + "iata_code": "SCC", + "wikipedia": "http://en.wikipedia.org/wiki/Deadhorse_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-148.457855, 70.19751] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kangerlussuaq", + "abbrev": "SFJ", + "location": "ramp", + "gps_code": "BGSF", + "iata_code": "SFJ", + "wikipedia": "http://en.wikipedia.org/wiki/Kangerlussuaq_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.694199, 67.018097] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Springfield Reg.", + "abbrev": "SGF", + "location": "terminal", + "gps_code": "KSGF", + "iata_code": "SGF", + "wikipedia": "http://en.wikipedia.org/wiki/Springfield/Branson_National_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.3826379012003, 37.2421444903024] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Shreveport Reg.", + "abbrev": "SHV", + "location": "terminal", + "gps_code": "KSHV", + "iata_code": "SHV", + "wikipedia": "http://en.wikipedia.org/wiki/Shreveport_Regional_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.8285222229503, 32.4545798866513] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Simferopol Int'l", + "abbrev": "SIP", + "location": "ramp", + "gps_code": "UKFF", + "iata_code": "SIP", + "wikipedia": "http://en.wikipedia.org/wiki/Simferopol_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [33.9960529244537, 45.0202173978165] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sitka Rocky Gutierrez", + "abbrev": "SIT", + "location": "terminal", + "gps_code": "PASI", + "iata_code": "SIT", + "wikipedia": "http://en.wikipedia.org/wiki/Sitka_Rocky_Gutierrez_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-135.365692, 57.05349] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Los Cabos Int'l", + "abbrev": "SJD", + "location": "terminal", + "gps_code": "MMSD", + "iata_code": "SJD", + "wikipedia": "http://en.wikipedia.org/wiki/Los_Cabos_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.717858386909, 23.1626574483597] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "McNary Field", + "abbrev": "SLE", + "location": "terminal", + "gps_code": "KSLE", + "iata_code": "SLE", + "wikipedia": "http://en.wikipedia.org/wiki/McNary_Field", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.007871479404, 44.9105138452143] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Plan de Guadalupe", + "abbrev": "SLW", + "location": "ramp", + "gps_code": "MMIO", + "iata_code": "SLW", + "wikipedia": "http://en.wikipedia.org/wiki/Plan_de_Guadalupe_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.932260548587, 25.5479976419974] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Shannon", + "abbrev": "SNN", + "location": "terminal", + "gps_code": "EINN", + "iata_code": "SNN", + "wikipedia": "http://en.wikipedia.org/wiki/Shannon_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-8.92242885557686, 52.6934537102532] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Santo Pekoa Int'l", + "abbrev": "SON", + "location": "runway", + "gps_code": "NVSS", + "iata_code": "SON", + "wikipedia": "http://en.wikipedia.org/wiki/Santo-Pekoa_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [167.220894919375, -15.5055387370858] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Achmad Yani", + "abbrev": "SRG", + "location": "terminal", + "gps_code": "WARS", + "iata_code": "SRG", + "wikipedia": "http://en.wikipedia.org/wiki/Achmad_Yani_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [110.378556255666, -6.97873484956982] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military mid", + "name": "Srinagar", + "abbrev": "SXR", + "location": "ramp", + "gps_code": "VISR", + "iata_code": "SXR", + "wikipedia": "http://en.wikipedia.org/wiki/Srinagar_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [74.7826243672311, 33.9830909431623] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Tapachula Int'l", + "abbrev": "TAP", + "location": "ramp", + "gps_code": "MMTP", + "iata_code": "TAP", + "wikipedia": "http://en.wikipedia.org/wiki/Tapachula_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.370003, 14.7911281338773] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Podgorica", + "abbrev": "TGD", + "location": "terminal", + "gps_code": "LYPG", + "iata_code": "TGD", + "wikipedia": "http://en.wikipedia.org/wiki/Podgorica_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [19.2466868618873, 42.3679335195428] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Tallahassee Reg.", + "abbrev": "TLH", + "location": "terminal", + "gps_code": "KTLH", + "iata_code": "TLH", + "wikipedia": "http://en.wikipedia.org/wiki/Tallahassee_Regional_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.3449953984858, 30.3955576176938] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Turin Int'l", + "abbrev": "TRN", + "location": "terminal", + "gps_code": "LIMF", + "iata_code": "TRN", + "wikipedia": "http://en.wikipedia.org/wiki/Turin_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [7.64416230362133, 45.1916600734642] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Taiyuan Wusu Int'l", + "abbrev": "TYN", + "location": "terminal", + "gps_code": "ZBYN", + "iata_code": "TYN", + "wikipedia": "http://en.wikipedia.org/wiki/Taiyuan_Wusu_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [112.625891539315, 37.7545117791512] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Narsarsuaq", + "abbrev": "UAK", + "location": "ramp", + "gps_code": "BGBW", + "iata_code": "UAK", + "wikipedia": "http://en.wikipedia.org/wiki/Narsarsuaq_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.4164008923108, 61.1625968337328] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military mid", + "name": "Rayong", + "abbrev": "UTP", + "location": "ramp", + "gps_code": "VTBU", + "iata_code": "UTP", + "wikipedia": "http://en.wikipedia.org/wiki/U-Tapao_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [101.00020929048, 12.6852930912664] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Victoria Falls", + "abbrev": "VFA", + "location": "runway", + "gps_code": "FVFA", + "iata_code": "VFA", + "wikipedia": "http://en.wikipedia.org/wiki/Victoria_Falls_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.8467677208826, -18.0990155983682] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Vijaywada", + "abbrev": "VGA", + "location": "ramp", + "gps_code": "VOBZ", + "iata_code": "VGA", + "wikipedia": "http://en.wikipedia.org/wiki/Vijayawada_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [80.7973080000675, 16.528642778235] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Varanasi", + "abbrev": "VNS", + "location": "terminal", + "gps_code": "VIBN", + "iata_code": "VNS", + "wikipedia": "http://en.wikipedia.org/wiki/Varanasi_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [82.8538741913527, 25.4499077329822] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Juan Gualberto Gomez", + "abbrev": "VRA", + "location": "terminal", + "gps_code": "MUVR", + "iata_code": "VRA", + "wikipedia": "http://en.wikipedia.org/wiki/Juan_Gualberto_G%C3%B3mez_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.4367103850623, 23.0395422339631] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Villahermosa", + "abbrev": "VSA", + "location": "terminal", + "gps_code": "MMVA", + "iata_code": "VSA", + "wikipedia": "http://en.wikipedia.org/wiki/Carlos_Rovirosa_P%C3%A9rez_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.8190675836262, 17.9930660113111] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Brandon", + "abbrev": "YBR", + "location": "terminal", + "gps_code": "CYBR", + "iata_code": "YBR", + "wikipedia": "http://en.wikipedia.org/wiki/Brandon_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.9458959002463, 49.9047279410277] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military major", + "name": "CFB Edmonton", + "abbrev": "YED", + "location": "ramp", + "gps_code": "CYED", + "iata_code": "YED", + "wikipedia": "http://en.wikipedia.org/wiki/CFB_Edmonton", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.478839054497, 53.6749156618668] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Iqaluit", + "abbrev": "YFB", + "location": "terminal", + "gps_code": "CYFB", + "iata_code": "YFB", + "wikipedia": "http://en.wikipedia.org/wiki/Iqaluit_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.5367292441812, 63.7511523537807] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "John C. Munro Hamilton Int'l", + "abbrev": "YHM", + "location": "terminal", + "gps_code": "CYHM", + "iata_code": "YHM", + "wikipedia": "http://en.wikipedia.org/wiki/John_C._Munro_Hamilton_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.9264230959967, 43.1633605305096] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Fort McMurray", + "abbrev": "YMM", + "location": "terminal", + "gps_code": "CYMM", + "iata_code": "YMM", + "wikipedia": "http://en.wikipedia.org/wiki/Fort_McMurray_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.223840046617, 56.6563171390962] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major and military", + "name": "Yantai", + "abbrev": "YNT", + "location": "terminal", + "gps_code": "ZSYT", + "iata_code": "YNT", + "wikipedia": "http://en.wikipedia.org/wiki/Yantai_Laishan_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [121.372047417773, 37.4077044726924] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Peace River", + "abbrev": "YPE", + "location": "terminal", + "gps_code": "CYPE", + "iata_code": "YPE", + "wikipedia": "http://en.wikipedia.org/wiki/Peace_River_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.443663208082, 56.231924036745] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Greater Moncton Int'l", + "abbrev": "YQM", + "location": "terminal", + "gps_code": "CYQM", + "iata_code": "YQM", + "wikipedia": "http://en.wikipedia.org/wiki/Greater_Moncton_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.6886696807361, 46.116205963926] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sydney/J.A. Douglas McCurdy", + "abbrev": "YQY", + "location": "terminal", + "gps_code": "CYQY", + "iata_code": "YQY", + "wikipedia": "http://en.wikipedia.org/wiki/Sydney_Airport_(Nova_Scotia)", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.0469372117026, 46.1673405890504] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Resolute Bay", + "abbrev": "YRB", + "location": "runway", + "gps_code": "CYRB", + "iata_code": "YRB", + "wikipedia": "http://en.wikipedia.org/wiki/Resolute_Bay_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.9708023244006, 74.7181860987594] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Fort Smith", + "abbrev": "YSM", + "location": "runway", + "gps_code": "CYSM", + "iata_code": "YSM", + "wikipedia": "http://en.wikipedia.org/wiki/Fort_Smith_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.961059938158, 60.0198749602443] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Thompson", + "abbrev": "YTH", + "location": "ramp", + "gps_code": "CYTH", + "iata_code": "YTH", + "wikipedia": "http://en.wikipedia.org/wiki/Thompson_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.860733, 55.797482] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Timmins", + "abbrev": "YTS", + "location": "ramp", + "gps_code": "CYTS", + "iata_code": "YTS", + "wikipedia": "http://en.wikipedia.org/wiki/Timmins_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.372047, 48.566158] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Repulse Bay", + "abbrev": "YUT", + "location": "approximate", + "gps_code": "CYUT", + "iata_code": "YUT", + "wikipedia": "http://en.wikipedia.org/wiki/Repulse_Bay_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.25, 66.533302] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kuujjuaq", + "abbrev": "YVP", + "location": "approximate", + "gps_code": "CYVP", + "iata_code": "YVP", + "wikipedia": "http://en.wikipedia.org/wiki/Kuujjuaq_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.433342, 58.101959] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Wabush", + "abbrev": "YWK", + "location": "ramp", + "gps_code": "CYWK", + "iata_code": "YWK", + "wikipedia": "http://en.wikipedia.org/wiki/Wabush_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.873009, 52.926071] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Edmonton City Centre", + "abbrev": "YXD", + "location": "terminal", + "gps_code": "CYXD", + "iata_code": "YXD", + "wikipedia": "http://en.wikipedia.org/wiki/Edmonton_City_Centre_(Blatchford_Field)_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.522973688581, 53.5709436582812] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Fort St. John (N. Peace)", + "abbrev": "YXJ", + "location": "approximate", + "gps_code": "CYXJ", + "iata_code": "YXJ", + "wikipedia": "http://en.wikipedia.org/wiki/Fort_St._John_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.736439, 56.246035] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "North Bay/Jack Garland", + "abbrev": "YYB", + "location": "approximate", + "gps_code": "CYYB", + "iata_code": "YYB", + "wikipedia": "http://en.wikipedia.org/wiki/North_Bay/Jack_Garland_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.42491, 46.358711] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Zaria", + "abbrev": "ZAR", + "location": "ramp", + "gps_code": "DNZA", + "iata_code": "ZAR", + "wikipedia": "http://en.wikipedia.org/wiki/Zaria_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [7.68726764310577, 11.1352958601071] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Skopje", + "abbrev": "SKP", + "location": "terminal", + "gps_code": "LWSK", + "iata_code": "SKP", + "wikipedia": "http://en.wikipedia.org/wiki/Skopje_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [21.6281971858229, 41.9564546081544] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Burnpur", + "abbrev": "VE23", + "location": "runway", + "gps_code": "VE23", + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/Burnpur_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [86.974546776573, 23.6312179107764] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Hindon Air Force Station", + "abbrev": "VIDX", + "location": "runway", + "gps_code": "VIDX", + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/Hindon_Air_Force_Station", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [77.3507888779117, 28.7077968601071] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Sunchon", + "abbrev": null, + "location": "runway", + "gps_code": null, + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/Sunchon_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [125.890825057486, 39.4119659710565] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Lodz Wladyslaw Reymont", + "abbrev": "EPLL", + "location": "terminal", + "gps_code": "EPLL", + "iata_code": "LCJ", + "wikipedia": "http://en.wikipedia.org/wiki/%C5%81%C3%B3d%C5%BA_W%C5%82adys%C5%82aw_Reymont_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [19.4032148744037, 51.72720704517] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid and military", + "name": "Alma Ata N.W.", + "abbrev": "BXJ", + "location": "ramp", + "gps_code": "UAAR", + "iata_code": "BXJ", + "wikipedia": null, + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [76.8782640096648, 43.3554190837919] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Jiamusi Dongjiao", + "abbrev": "JMU", + "location": "ramp", + "gps_code": "ZYJM", + "iata_code": "JMU", + "wikipedia": "http://en.wikipedia.org/wiki/Jiamusi_Dongjiao_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [130.456204704407, 46.8430150223379] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Mudanjiang Hailang", + "abbrev": "MDG", + "location": "ramp", + "gps_code": "ZYMD", + "iata_code": "MDG", + "wikipedia": "http://en.wikipedia.org/wiki/Mudanjiang_Hailang_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [129.58015153222, 44.5342936299935] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military major", + "name": "Severomorsk-3 (Murmansk N.E.)", + "abbrev": "ULMM", + "location": "runway", + "gps_code": "ULMM", + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/Severomorsk-3", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [33.2903527616285, 69.0168711826804] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Mosul Int'l", + "abbrev": "OSB", + "location": "runway", + "gps_code": "ORBM", + "iata_code": "OSB", + "wikipedia": "http://en.wikipedia.org/wiki/Mosul_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [43.145802, 36.308601] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military mid", + "name": "Rostov N.", + "abbrev": null, + "location": "runway", + "gps_code": null, + "iata_code": null, + "wikipedia": null, + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.6353996343665, 47.2774209202867] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Rostov S.W.", + "abbrev": null, + "location": "runway", + "gps_code": null, + "iata_code": null, + "wikipedia": null, + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.7972215345149, 47.1158577255835] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Oulu", + "abbrev": "OUL", + "location": "terminal", + "gps_code": "EFOU", + "iata_code": "OUL", + "wikipedia": "http://en.wikipedia.org/wiki/Oulu_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.3728374704307, 64.9287992358849] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Bordeaux", + "abbrev": "BOD", + "location": "terminal", + "gps_code": "LFBD", + "iata_code": "BOD", + "wikipedia": "http://en.wikipedia.org/wiki/Bordeaux_-_M%C3%A9rignac_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.701793449075243, 44.8321108662674] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Mandelieu", + "abbrev": "CEQ", + "location": "terminal", + "gps_code": "LFMD", + "iata_code": "CEQ", + "wikipedia": "http://en.wikipedia.org/wiki/Cannes_%E2%80%93_Mandelieu_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [6.95431612028937, 43.546097987045] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "St Gatien", + "abbrev": "DOL", + "location": "ramp", + "gps_code": "LFRG", + "iata_code": "DOL", + "wikipedia": "http://en.wikipedia.org/wiki/Deauville_-_Saint-Gatien_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [0.158653528230218, 49.3616609986609] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Lille-Lesquin", + "abbrev": "LIL", + "location": "terminal", + "gps_code": "LFQQ", + "iata_code": "LIL", + "wikipedia": "http://en.wikipedia.org/wiki/Lille_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [3.10596499799814, 50.5716423929581] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Toulouse-Blagnac", + "abbrev": "TLS", + "location": "terminal", + "gps_code": "LFBO", + "iata_code": "TLS", + "wikipedia": "http://en.wikipedia.org/wiki/Toulouse-Blagnac_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [1.37350918551153, 43.6304625661601] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Fukuoka", + "abbrev": "FUK", + "location": "terminal", + "gps_code": "RJFF", + "iata_code": "FUK", + "wikipedia": "http://en.wikipedia.org/wiki/Fukuoka_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [130.444189541884, 33.5848164332573] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Hiroshima-Nishi", + "abbrev": "HIW", + "location": "terminal", + "gps_code": "RJBH", + "iata_code": "HIW", + "wikipedia": "http://en.wikipedia.org/wiki/Hiroshima-Nishi_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [132.419372741681, 34.3713815628829] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Nagoya", + "abbrev": "NKM", + "location": "terminal", + "gps_code": "RJNA", + "iata_code": "NKM", + "wikipedia": "http://en.wikipedia.org/wiki/Nagoya_Airfield", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [136.91962838414, 35.2540532052867] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sendai", + "abbrev": "SDJ", + "location": "terminal", + "gps_code": "RJSS", + "iata_code": "SDJ", + "wikipedia": "http://en.wikipedia.org/wiki/Sendai_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [140.930247381369, 38.1382075615287] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kirkenes Hoybuktmoen", + "abbrev": "KKN", + "location": "terminal", + "gps_code": "ENKR", + "iata_code": "KKN", + "wikipedia": "http://en.wikipedia.org/wiki/Kirkenes_Airport%2C_H%C3%B8ybuktmoen", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [29.8913489500406, 69.7238318113692] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Marechal Rondon Int'l", + "abbrev": "CGB", + "location": "terminal", + "gps_code": "SBCY", + "iata_code": "CGB", + "wikipedia": "http://en.wikipedia.org/wiki/Marechal_Rondon_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.1201774754724, -15.6511470191955] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Hercilio Luz Int'l", + "abbrev": "FLN", + "location": "terminal", + "gps_code": "SBFL", + "iata_code": "FLN", + "wikipedia": "http://en.wikipedia.org/wiki/Herc%C3%ADlio_Luz_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.5448122049599, -27.6646276941638] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Joinville-Lauro C. de Loyola", + "abbrev": "JOI", + "location": "terminal", + "gps_code": "SBJV", + "iata_code": "JOI", + "wikipedia": "http://en.wikipedia.org/wiki/Joinville-Lauro_Carneiro_de_Loyola_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.8016498165616, -26.2242941374785] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Presidente Castro Pinto Int'l", + "abbrev": "JPA", + "location": "terminal", + "gps_code": "SBJP", + "iata_code": "JPA", + "wikipedia": "http://en.wikipedia.org/wiki/Presidente_Castro_Pinto_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.9488925911125, -7.14617462402047] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Augusto Severo Int'l", + "abbrev": "NAT", + "location": "terminal", + "gps_code": "SJJQ", + "iata_code": "NAT", + "wikipedia": "http://en.wikipedia.org/wiki/Augusto_Severo_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.2488410165389, -5.89912054477116] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Francisco Sa Carneiro", + "abbrev": "OPO", + "location": "terminal", + "gps_code": "LPPR", + "iata_code": "OPO", + "wikipedia": "http://en.wikipedia.org/wiki/Francisco_S%C3%A1_Carneiro_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-8.67127240719647, 41.2368708920452] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Marechal Cunha Machado Int'l", + "abbrev": "SLZ", + "location": "terminal", + "gps_code": "SBSL", + "iata_code": "SLZ", + "wikipedia": "http://en.wikipedia.org/wiki/Marechal_Cunha_Machado_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.2362344700492, -2.58350921043019] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military mid", + "name": "Santos Air Force Base", + "abbrev": "SSZ", + "location": "ramp", + "gps_code": "SBST", + "iata_code": "SSZ", + "wikipedia": "http://en.wikipedia.org/wiki/Santos_Air_Force_Base", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.3052704931003, -23.9237590410637] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Teresina-Senador Petronio Portella", + "abbrev": "THE", + "location": "terminal", + "gps_code": "SBTE", + "iata_code": "THE", + "wikipedia": "http://en.wikipedia.org/wiki/Teresina_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.8212402317845, -5.06346299167191] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Viracopos-Campinas Int'l", + "abbrev": "VCP", + "location": "terminal", + "gps_code": "SBKP", + "iata_code": "VCP", + "wikipedia": "http://en.wikipedia.org/wiki/Viracopos-Campinas_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.1410791911014, -23.0096239085339] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Eurico de Aguiar Salles", + "abbrev": "VIX", + "location": "ramp", + "gps_code": "SBVT", + "iata_code": "VIX", + "wikipedia": "http://en.wikipedia.org/wiki/Eurico_de_Aguiar_Salles_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-40.2885368759913, -20.2574162759419] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Alicante", + "abbrev": "ALC", + "location": "terminal", + "gps_code": "LEAL", + "iata_code": "ALC", + "wikipedia": "http://en.wikipedia.org/wiki/Alicante_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.557230440363588, 38.2866408993929] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Almeria", + "abbrev": "LEI", + "location": "terminal", + "gps_code": "LEAM", + "iata_code": "LEI", + "wikipedia": "http://en.wikipedia.org/wiki/Almer%C3%ADa_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.37160144059121, 36.8477672709643] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Valencia", + "abbrev": "VLC", + "location": "terminal", + "gps_code": "LEVC", + "iata_code": "VLC", + "wikipedia": "http://en.wikipedia.org/wiki/Valencia_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.473474930771676, 39.4914597884489] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Kiruna_Airport", + "abbrev": "KRN", + "location": "terminal", + "gps_code": "ESNQ", + "iata_code": "KRN", + "wikipedia": "http://en.wikipedia.org/wiki/Kiruna_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [20.3351522954898, 67.8256066056432] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major", + "name": "Norrkoping Airport", + "abbrev": "NRK", + "location": "terminal", + "gps_code": "ESSP", + "iata_code": "NRK", + "wikipedia": "http://en.wikipedia.org/wiki/Norrk%C3%B6ping_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [16.2339407695814, 58.5833805017541] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Husein Sastranegara Int'l", + "abbrev": "BDO", + "location": "runway", + "gps_code": "WICC", + "iata_code": "BDO", + "wikipedia": "http://en.wikipedia.org/wiki/Husein_Sastranegara_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [107.575611852209, -6.90042408353409] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Rosario – Islas Malvinas Int'l", + "abbrev": "ROS", + "location": "terminal", + "gps_code": "SAAR", + "iata_code": "ROS", + "wikipedia": "http://en.wikipedia.org/wiki/Rosario_%E2%80%93_Islas_Malvinas_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.7800787216586, -32.9162269743812] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Maceio/Zumbi dos Palmares Int'l", + "abbrev": "MCZ", + "location": "terminal", + "gps_code": "SBMO", + "iata_code": "MCZ", + "wikipedia": "http://en.wikipedia.org/wiki/Zumbi_dos_Palmares_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-35.7924951215833, -9.51494118540117] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Sharm el-Sheikh Int'l", + "abbrev": "SSH", + "location": "ramp", + "gps_code": "HESH", + "iata_code": "SSH", + "wikipedia": "http://en.wikipedia.org/wiki/Sharm_el-Sheikh_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [34.3901189267288, 27.9804044199168] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Taba Int'l", + "abbrev": "TCP", + "location": "terminal", + "gps_code": "HETB", + "iata_code": "TCP", + "wikipedia": "http://en.wikipedia.org/wiki/Taba_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [34.7758378996779, 29.5944990568019] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "major and military", + "name": "Agra", + "abbrev": "AGR", + "location": "runway", + "gps_code": "VIAG", + "iata_code": "AGR", + "wikipedia": "http://en.wikipedia.org/wiki/Agra_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [77.960909176509, 27.15772773475] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Vadodara", + "abbrev": "BDQ", + "location": "runway", + "gps_code": "VABO", + "iata_code": "BDQ", + "wikipedia": "http://en.wikipedia.org/wiki/Vadodara_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.2262889533239, 22.3361640021171] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Shahid Ashrafi Esfahani", + "abbrev": "KSH", + "location": "runway", + "gps_code": "OICC", + "iata_code": "KSH", + "wikipedia": "http://en.wikipedia.org/wiki/Shahid_Ashrafi_Esfahani_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [47.1565835165639, 34.3464167739108] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Benina Int'l", + "abbrev": "BEN", + "location": "ramp", + "gps_code": "HLLB", + "iata_code": "BEN", + "wikipedia": "http://en.wikipedia.org/wiki/Benina_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [20.2680398018516, 32.0872774606553] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "military major", + "name": "King Abdulaziz Ab", + "abbrev": "DHA", + "location": "ramp", + "gps_code": "OEDR", + "iata_code": "DHA", + "wikipedia": "http://en.wikipedia.org/wiki/Dhahran_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [50.1477245727844, 26.2703680854768] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "mid", + "name": "Nueva Hesperides Int'l", + "abbrev": "STY", + "location": "runway", + "gps_code": "SUSO", + "iata_code": "STY", + "wikipedia": "http://en.wikipedia.org/wiki/Nueva_Hesperides_International_Airport", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.9840821176492, -31.4373883387798] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "spaceport", + "name": "Baikonur Cosmodrome", + "abbrev": "BAIK", + "location": "approximate", + "gps_code": null, + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/Baikonur_Cosmodrome", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [63.3073544238751, 45.9635739403124] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "spaceport", + "name": "Kennedy Space Center", + "abbrev": "KSC", + "location": "approximate", + "gps_code": null, + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/John_F._Kennedy_Space_Center", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.6369680911892, 28.5163704772027] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 8, + "type": "spaceport", + "name": "Centre Spatial Guyanais", + "abbrev": "CSG", + "location": "terminal", + "gps_code": null, + "iata_code": null, + "wikipedia": "http://en.wikipedia.org/wiki/Guiana_Space_Centre", + "natlscale": 10, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.7684296893452, 5.23941001258035] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Queen Beatrix Int'l", + "abbrev": "AUA", + "location": "terminal", + "gps_code": "TNCA", + "iata_code": "AUA", + "wikipedia": "http://en.wikipedia.org/wiki/Queen_Beatrix_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.0076228563496, 12.5034643630297] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Djibouti-Ambouli Int'l", + "abbrev": "JIB", + "location": "terminal", + "gps_code": "HDAM", + "iata_code": "JIB", + "wikipedia": "http://en.wikipedia.org/wiki/Djibouti-Ambouli_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [43.1497127859956, 11.5521018230172] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid and military", + "name": "Diego Aracena Int'l", + "abbrev": "IQQ", + "location": "terminal", + "gps_code": "SCDA", + "iata_code": "IQQ", + "wikipedia": "http://en.wikipedia.org/wiki/Diego_Aracena_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.178635395533, -20.5478400878309] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Sabiha Gokcen Havaalani", + "abbrev": "SAW", + "location": "terminal", + "gps_code": "LTFJ", + "iata_code": "SAW", + "wikipedia": "http://en.wikipedia.org/wiki/Sabiha_G%C3%B6k%C3%A7en_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [29.3095991423889, 40.9043003553957] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Kosrae Island", + "abbrev": "KSA", + "location": "ramp", + "gps_code": "PTSA", + "iata_code": "KSA", + "wikipedia": "http://en.wikipedia.org/wiki/Kosrae_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [162.957041225076, 5.3520098571828] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Funafuti Int'l", + "abbrev": "FUN", + "location": "ramp", + "gps_code": "NGFU", + "iata_code": "FUN", + "wikipedia": "http://en.wikipedia.org/wiki/Funafuti_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [179.19544202302, -8.52485415059424] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Dr. Babasaheb Ambedkar Int'l", + "abbrev": "NAG", + "location": "terminal", + "gps_code": "VANP", + "iata_code": "NAG", + "wikipedia": "http://en.wikipedia.org/wiki/Dr._Babasaheb_Ambedkar_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [79.0537976421986, 21.0899317630087] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Phuket Int'l", + "abbrev": "HKT", + "location": "terminal", + "gps_code": "VTSP", + "iata_code": "HKT", + "wikipedia": "http://en.wikipedia.org/wiki/Phuket_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [98.3060384900559, 8.10768475952735] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Nadi Int'l", + "abbrev": "NAN", + "location": "terminal", + "gps_code": "NFFN", + "iata_code": "NAN", + "wikipedia": "http://en.wikipedia.org/wiki/Nadi_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [177.451151198059, -17.7529129479792] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Lic. Jesus Teran Peredo Int'l", + "abbrev": "AGU", + "location": "terminal", + "gps_code": "MMAS", + "iata_code": "AGU", + "wikipedia": "http://en.wikipedia.org/wiki/Lic._Jes%C3%BAs_Ter%C3%A1n_Peredo_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-102.314093740058, 21.7013390329207] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Albenga", + "abbrev": "ALL", + "location": "ramp", + "gps_code": "LIMG", + "iata_code": "ALL", + "wikipedia": "http://en.wikipedia.org/wiki/Villanova_d'Albenga_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [8.12314535436409, 44.0458773598158] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Queen Alia Int'l", + "abbrev": "AMM", + "location": "terminal", + "gps_code": "OJAI", + "iata_code": "AMM", + "wikipedia": "http://en.wikipedia.org/wiki/Queen_Alia_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [35.989707162193, 31.7226621600432] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Chacalluta Int'l", + "abbrev": "ARI", + "location": "terminal", + "gps_code": "SCAR", + "iata_code": "ARI", + "wikipedia": "http://en.wikipedia.org/wiki/Chacalluta_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.3357301410959, -18.3492061639579] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Atar Int'l", + "abbrev": "ATR", + "location": "terminal", + "gps_code": "GQPA", + "iata_code": "ATR", + "wikipedia": "http://en.wikipedia.org/wiki/Atar_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.0511704323315, 20.4982706101565] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Ernesto Cortissoz Int'l", + "abbrev": "BAQ", + "location": "terminal", + "gps_code": "SKBQ", + "iata_code": "BAQ", + "wikipedia": "http://en.wikipedia.org/wiki/Ernesto_Cortissoz_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.776555978265, 10.8866775959414] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Teniente Luis Candelaria Int'l", + "abbrev": "BRC", + "location": "terminal", + "gps_code": "SAZS", + "iata_code": "BRC", + "wikipedia": "http://en.wikipedia.org/wiki/San_Carlos_de_Bariloche_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.1614300869763, -41.1459976958105] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Bouake", + "abbrev": "BYK", + "location": "terminal", + "gps_code": "DIBK", + "iata_code": "BYK", + "wikipedia": "http://en.wikipedia.org/wiki/Bouak%C3%A9_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.06894222275311, 7.73610495555032] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Philip S. W. Goldson Int'l", + "abbrev": "BZE", + "location": "terminal", + "gps_code": "MZBZ", + "iata_code": "BZE", + "wikipedia": "http://en.wikipedia.org/wiki/Philip_S._W._Goldson_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.3082064033075, 17.5360686575521] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Corpus Christi Int'l", + "abbrev": "CRP", + "location": "terminal", + "gps_code": "KCRP", + "iata_code": "CRP", + "wikipedia": "http://en.wikipedia.org/wiki/Corpus_Christi_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.5022678710298, 27.7744560700823] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Hato Int'l", + "abbrev": "CUR", + "location": "terminal", + "gps_code": "TNCC", + "iata_code": "CUR", + "wikipedia": "http://en.wikipedia.org/wiki/Hato_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.9568788072761, 12.1848346052019] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Velazco Astete Int'l", + "abbrev": "CUZ", + "location": "terminal", + "gps_code": "SPZO", + "iata_code": "CUZ", + "wikipedia": "http://en.wikipedia.org/wiki/Alejandro_Velasco_Astete_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.9436641449722, -13.5382186992639] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Julius Nyerere Int'l", + "abbrev": "DAR", + "location": "terminal", + "gps_code": "HTDA", + "iata_code": "DAR", + "wikipedia": "http://en.wikipedia.org/wiki/Julius_Nyerere_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.2074715039165, -6.86672004249119] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Detroit City", + "abbrev": "DET", + "location": "terminal", + "gps_code": "KDET", + "iata_code": "DET", + "wikipedia": "http://en.wikipedia.org/wiki/Coleman_A._Young_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.0039681417733, 42.4090938431907] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Presidente Nicolau Lobato Int'l", + "abbrev": "DIL", + "location": "terminal", + "gps_code": "WPDL", + "iata_code": "DIL", + "wikipedia": "http://en.wikipedia.org/wiki/Presidente_Nicolau_Lobato_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [125.524854209182, -8.54931157414564] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Moscow Domodedovo Int'l", + "abbrev": "DME", + "location": "terminal", + "gps_code": "UUDD", + "iata_code": "DME", + "wikipedia": "http://en.wikipedia.org/wiki/Domodedovo_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [37.9002531289452, 55.4141528223023] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Dunedin Int'l", + "abbrev": "DUD", + "location": "terminal", + "gps_code": "NZDN", + "iata_code": "DUD", + "wikipedia": "http://en.wikipedia.org/wiki/Dunedin_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [170.200027, -45.923431] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Dzaoudzi Pamanzi Int'l", + "abbrev": "DZA", + "location": "terminal", + "gps_code": "FMCZ", + "iata_code": "DZA", + "wikipedia": "http://en.wikipedia.org/wiki/Dzaoudzi_Pamandzi_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [45.2817864197899, -12.8049474381643] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "El Paso Int'l", + "abbrev": "ELP", + "location": "terminal", + "gps_code": "KELP", + "iata_code": "ELP", + "wikipedia": "http://en.wikipedia.org/wiki/El_Paso_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.395714679366, 31.7990860272589] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Zvartnots Int'l", + "abbrev": "EVN", + "location": "terminal", + "gps_code": "UDYZ", + "iata_code": "EVN", + "wikipedia": "http://en.wikipedia.org/wiki/Zvartnots_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [44.4000630536938, 40.1523679451884] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Fort Worth Meacham Field", + "abbrev": "FTW", + "location": "terminal", + "gps_code": "KFTW", + "iata_code": "FTW", + "wikipedia": "http://en.wikipedia.org/wiki/Fort_Worth_Meacham_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.3551348561587, 32.8207529047972] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "JAGS McCartney Int'l", + "abbrev": "GDT", + "location": "terminal", + "gps_code": "MBGT", + "iata_code": "GDT", + "wikipedia": "http://en.wikipedia.org/wiki/JAGS_McCartney_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.1461337448876, 21.4421237439063] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Scholes Int'l", + "abbrev": "GLS", + "location": "terminal", + "gps_code": "KGLS", + "iata_code": "GLS", + "wikipedia": "http://en.wikipedia.org/wiki/Scholes_International_Airport_at_Galveston", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.8554013876264, 29.2671239212096] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Goma Int'l", + "abbrev": "GOM", + "location": "terminal", + "gps_code": "FZNA", + "iata_code": "GOM", + "wikipedia": "http://en.wikipedia.org/wiki/Goma_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [29.2400534952228, -1.6583179500207] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Garoua Int'l", + "abbrev": "GOU", + "location": "terminal", + "gps_code": "FKKR", + "iata_code": "GOU", + "wikipedia": "http://en.wikipedia.org/wiki/Garoua_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [13.3724309377878, 9.33068867678854] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Antonio B. Won Pat Int'l", + "abbrev": "GUM", + "location": "terminal", + "gps_code": "PGUM", + "iata_code": "GUM", + "wikipedia": "http://en.wikipedia.org/wiki/Antonio_B._Won_Pat_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [144.805850357093, 13.4926462359465] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Gary/Chicago Int'l", + "abbrev": "GYY", + "location": "terminal", + "gps_code": "KGYY", + "iata_code": "GYY", + "wikipedia": "http://en.wikipedia.org/wiki/Gary/Chicago_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.4083596247406, 41.6177930015166] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Prince Said Ibrahim Int'l", + "abbrev": "HAH", + "location": "terminal", + "gps_code": "FMCH", + "iata_code": "HAH", + "wikipedia": "http://en.wikipedia.org/wiki/Prince_Said_Ibrahim_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [43.2745612179616, -11.5366393829127] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Hobart Int'l", + "abbrev": "HBA", + "location": "terminal", + "gps_code": "YMHB", + "iata_code": "HBA", + "wikipedia": "http://en.wikipedia.org/wiki/Hobart_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [147.505996190408, -42.8376083694822] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Honiara Int'l", + "abbrev": "HIR", + "location": "terminal", + "gps_code": "AGGH", + "iata_code": "HIR", + "wikipedia": "http://en.wikipedia.org/wiki/Honiara_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [160.045855129925, -9.42757566400146] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Kiev Zhuliany Int'l", + "abbrev": "IEV", + "location": "terminal", + "gps_code": "UKKK", + "iata_code": "IEV", + "wikipedia": "http://en.wikipedia.org/wiki/Kiev_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [30.4451305182104, 50.412808165985] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid and military", + "name": "Irkutsk S.E.", + "abbrev": "IKT", + "location": "terminal", + "gps_code": "UIII", + "iata_code": "IKT", + "wikipedia": "http://en.wikipedia.org/wiki/Irkutsk_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [104.355859748002, 52.2728893882244] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Indianapolis Int'l", + "abbrev": "IND", + "location": "terminal", + "gps_code": "KIND", + "iata_code": "IND", + "wikipedia": "http://en.wikipedia.org/wiki/Indianapolis_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.2734003650886, 39.7302043703969] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Nauru Int'l", + "abbrev": "INU", + "location": "runway", + "gps_code": "ANYN", + "iata_code": "INU", + "wikipedia": "http://en.wikipedia.org/wiki/Nauru_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [166.91613965882, -0.545037226856384] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Mataveri Int'l", + "abbrev": "IPC", + "location": "terminal", + "gps_code": "SCIP", + "iata_code": "IPC", + "wikipedia": "http://en.wikipedia.org/wiki/Mataveri_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-109.43006441001, -27.1587738388538] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Gob. Horacio Guzman Int'l", + "abbrev": "JUJ", + "location": "terminal", + "gps_code": "SASJ", + "iata_code": "JUJ", + "wikipedia": "http://en.wikipedia.org/wiki/Gobernador_Horacio_Guzm%C3%A1n_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.0937665458812, -24.3861010775846] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Nanchang Changbei Int'l", + "abbrev": "KHN", + "location": "terminal", + "gps_code": "ZSCN", + "iata_code": "KHN", + "wikipedia": "http://en.wikipedia.org/wiki/Nanchang_Changbei_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [115.911979918602, 28.8624891200666] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Kunming Wujiaba Int'l", + "abbrev": "KMG", + "location": "terminal", + "gps_code": "ZPPP", + "iata_code": "KMG", + "wikipedia": "http://en.wikipedia.org/wiki/Kunming_Wujiaba_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [102.742117578823, 24.999996110081] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Leeds Bradford", + "abbrev": "LBA", + "location": "terminal", + "gps_code": "EGNM", + "iata_code": "LBA", + "wikipedia": "http://en.wikipedia.org/wiki/Leeds_Bradford_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.65983106734746, 53.8690819474434] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Libreville Leon M'ba Int'l", + "abbrev": "LBV", + "location": "terminal", + "gps_code": "FOOL", + "iata_code": "LBV", + "wikipedia": "http://en.wikipedia.org/wiki/Libreville_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [9.41022337820712, 0.457139229503759] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Lome Tokoin", + "abbrev": "LFW", + "location": "terminal", + "gps_code": "DXXX", + "iata_code": "LFW", + "wikipedia": "http://en.wikipedia.org/wiki/Lom%C3%A9-Tokoin_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [1.25093205640014, 6.16687362722297] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid and military", + "name": "Lviv Danylo Halytskyi Int'l", + "abbrev": "LWO", + "location": "runway", + "gps_code": "UKLL", + "iata_code": "LWO", + "wikipedia": "http://en.wikipedia.org/wiki/Lviv_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [23.9461269598944, 49.8178506050005] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Marshall Islands Int'l", + "abbrev": "MAJ", + "location": "terminal", + "gps_code": "PKMJ", + "iata_code": "MAJ", + "wikipedia": "http://en.wikipedia.org/wiki/Marshall_Islands_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [171.281919370648, 7.06811848557091] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Macau Int'l", + "abbrev": "MFM", + "location": "terminal", + "gps_code": "VMMC", + "iata_code": "MFM", + "wikipedia": "http://en.wikipedia.org/wiki/Macau_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [113.57451294862, 22.1576572529634] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Aden Adde Int'l", + "abbrev": "MGQ", + "location": "runway", + "gps_code": "HCMM", + "iata_code": "MGQ", + "wikipedia": "http://en.wikipedia.org/wiki/Aden_Adde_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [45.3036374186202, 2.01635311214988] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Maputo Int'l", + "abbrev": "MPM", + "location": "terminal", + "gps_code": "FQMA", + "iata_code": "MPM", + "wikipedia": "http://en.wikipedia.org/wiki/Maputo_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [32.5741915194782, -25.924276711787] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Sir Seewoosagur Ramgoolam Int'l", + "abbrev": "MRU", + "location": "terminal", + "gps_code": "FIMP", + "iata_code": "MRU", + "wikipedia": "http://en.wikipedia.org/wiki/Sir_Seewoosagur_Ramgoolam_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [57.6769860076636, -20.4317567793216] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Naples Int'l", + "abbrev": "NAP", + "location": "terminal", + "gps_code": "LIRN", + "iata_code": "NAP", + "wikipedia": "http://en.wikipedia.org/wiki/Naples_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [14.2828444340203, 40.8780728843639] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Nouadhibou Int'l", + "abbrev": "NDB", + "location": "ramp", + "gps_code": "GQPP", + "iata_code": "NDB", + "wikipedia": "http://en.wikipedia.org/wiki/Nouadhibou_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.0334398691538, 20.9290523064387] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Ningbo Lishe Int'l", + "abbrev": "NGB", + "location": "terminal", + "gps_code": "ZSNB", + "iata_code": "NGB", + "wikipedia": "http://en.wikipedia.org/wiki/Ningbo_Lishe_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [121.461819388484, 29.8208231906861] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Nouakchott Int'l", + "abbrev": "NKC", + "location": "terminal", + "gps_code": "GQNN", + "iata_code": "NKC", + "wikipedia": "http://en.wikipedia.org/wiki/Nouakchott_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-15.9519259252201, 18.0979231718175] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "La Tontouta Int'l", + "abbrev": "NOU", + "location": "terminal", + "gps_code": "NWWW", + "iata_code": "NOU", + "wikipedia": "http://en.wikipedia.org/wiki/La_Tontouta_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [166.217232118699, -22.0136386248981] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Oakland Int'l", + "abbrev": "OAK", + "location": "terminal", + "gps_code": "KOAK", + "iata_code": "OAK", + "wikipedia": "http://en.wikipedia.org/wiki/Oakland_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.213261257863, 37.7123036951691] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Ontario Int'l", + "abbrev": "ONT", + "location": "parking", + "gps_code": "KONT", + "iata_code": "ONT", + "wikipedia": "http://en.wikipedia.org/wiki/LA/Ontario_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.592327651651, 34.060191102066] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Cork", + "abbrev": "ORK", + "location": "terminal", + "gps_code": "EICK", + "iata_code": "ORK", + "wikipedia": "http://en.wikipedia.org/wiki/Cork_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-8.49014199983817, 51.8485405419924] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Minangkabau Int'l", + "abbrev": "PDG", + "location": "terminal", + "gps_code": "WIMG", + "iata_code": "PDG", + "wikipedia": "http://en.wikipedia.org/wiki/Minangkabau_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [100.285455851791, -0.786045714026273] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Joao Paulo II", + "abbrev": "PDL", + "location": "ramp", + "gps_code": "LPPD", + "iata_code": "PDL", + "wikipedia": "http://en.wikipedia.org/wiki/Jo%C3%A3o_Paulo_II_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-25.6969882198711, 37.7433316472933] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Bacha Khan Int'l", + "abbrev": "PEW", + "location": "ramp", + "gps_code": "OPPS", + "iata_code": "PEW", + "wikipedia": "http://en.wikipedia.org/wiki/Peshawar_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [71.5188149912667, 33.9914027889596] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Glasgow Prestwick", + "abbrev": "PIK", + "location": "terminal", + "gps_code": "EGPK", + "iata_code": "PIK", + "wikipedia": "http://en.wikipedia.org/wiki/Glasgow_Prestwick_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.61097163901068, 55.5088918105142] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Ponta Pora Int'l", + "abbrev": "PMG", + "location": "terminal", + "gps_code": "SBPP", + "iata_code": "PMG", + "wikipedia": "http://en.wikipedia.org/wiki/Ponta_Por%C3%A3_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.7060793748573, -22.551786560876] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Palmerston N. Int'l", + "abbrev": "PMR", + "location": "terminal", + "gps_code": "NZPM", + "iata_code": "PMR", + "wikipedia": "http://en.wikipedia.org/wiki/Palmerston_North_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [175.62128328196, -40.3233178852055] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Pohnpei Int'l", + "abbrev": "PNI", + "location": "terminal", + "gps_code": "PTPN", + "iata_code": "PNI", + "wikipedia": "http://en.wikipedia.org/wiki/Pohnpei_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [158.203304490964, 6.98130676512123] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Tahiti Faa'a Int'l", + "abbrev": "PPT", + "location": "terminal", + "gps_code": "NTAA", + "iata_code": "PPT", + "wikipedia": "http://en.wikipedia.org/wiki/Faa'a_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.609757932429, -17.5594577659943] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major and military", + "name": "Pisa Galileo Galilei Int'l", + "abbrev": "PSA", + "location": "terminal", + "gps_code": "LIRP", + "iata_code": "PSA", + "wikipedia": "http://en.wikipedia.org/wiki/Galileo_Galilei_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [10.4001343718056, 43.6983224157664] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid and military", + "name": "Port Sudan", + "abbrev": "PZU", + "location": "runway", + "gps_code": "HSSP", + "iata_code": "PZU", + "wikipedia": null, + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [37.216065757542, 19.5760636531968] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Praia Int'l", + "abbrev": "RAI", + "location": "terminal", + "gps_code": "GVNP", + "iata_code": "RAI", + "wikipedia": "http://en.wikipedia.org/wiki/Praia_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-23.4862019883587, 14.9449889352832] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Marrakech-Menara", + "abbrev": "RAK", + "location": "terminal", + "gps_code": "GMMX", + "iata_code": "RAK", + "wikipedia": "http://en.wikipedia.org/wiki/Menara_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-8.02460535907989, 31.6022946597764] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Rarotonga Int'l", + "abbrev": "RAR", + "location": "ramp", + "gps_code": "NCRG", + "iata_code": "RAR", + "wikipedia": "http://en.wikipedia.org/wiki/Rarotonga_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-159.798156308387, -21.2009821724632] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Siem Reap Int'l", + "abbrev": "REP", + "location": "terminal", + "gps_code": "VDSR", + "iata_code": "REP", + "wikipedia": "http://en.wikipedia.org/wiki/Angkor_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [103.815780528112, 13.4087969693538] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Hermes Quijada Int'l", + "abbrev": "RGA", + "location": "terminal", + "gps_code": "SAWE", + "iata_code": "RGA", + "wikipedia": "http://en.wikipedia.org/wiki/Hermes_Quijada_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-67.7530268462675, -53.7814746058316] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Piloto Civil Norberto Fernandez Int'l", + "abbrev": "RGL", + "location": "terminal", + "gps_code": "SAWG", + "iata_code": "RGL", + "wikipedia": "http://en.wikipedia.org/wiki/Piloto_Civil_Norberto_Fern%C3%A1ndez_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.3064711776731, -51.6116980855402] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Reno-Tahoe Int'l", + "abbrev": "RNO", + "location": "terminal", + "gps_code": "KRNO", + "iata_code": "RNO", + "wikipedia": "http://en.wikipedia.org/wiki/Reno-Tahoe_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-119.775283308105, 39.5058499014703] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Roman Tmetuchl Int'l", + "abbrev": "ROR", + "location": "terminal", + "gps_code": "PTRO", + "iata_code": "ROR", + "wikipedia": "http://en.wikipedia.org/wiki/Palau_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [134.532953466159, 7.3644955361292] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Amilcar Cabral Int'l", + "abbrev": "SID", + "location": "terminal", + "gps_code": "GVAC", + "iata_code": "SID", + "wikipedia": "http://en.wikipedia.org/wiki/Am%C3%ADlcar_Cabral_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-22.9440574079648, 16.7347932693385] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Sarajevo", + "abbrev": "SJJ", + "location": "terminal", + "gps_code": "LQSA", + "iata_code": "SJJ", + "wikipedia": "http://en.wikipedia.org/wiki/Sarajevo_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [18.3366185457127, 43.8258872246797] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Robert L. Bradshaw Int'l", + "abbrev": "SKB", + "location": "terminal", + "gps_code": "TKPK", + "iata_code": "SKB", + "wikipedia": "http://en.wikipedia.org/wiki/Robert_L._Bradshaw_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.7142125047316, 17.311125840442] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Martín Miguel de Güemes Int", + "abbrev": "SLA", + "location": "terminal", + "gps_code": "SASA", + "iata_code": "SLA", + "wikipedia": "http://en.wikipedia.org/wiki/Mart%C3%ADn_Miguel_de_G%C3%BCemes_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.4784760437796, -24.8443742713315] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Saipan Int'l", + "abbrev": "SPN", + "location": "terminal", + "gps_code": "PGSN", + "iata_code": "SPN", + "wikipedia": "http://en.wikipedia.org/wiki/Saipan_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [145.723694658638, 15.1215167197664] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Juana Azurduy de Padilla Int'l", + "abbrev": "SRE", + "location": "terminal", + "gps_code": "SLSU", + "iata_code": "SRE", + "wikipedia": "http://en.wikipedia.org/wiki/Juana_Azurduy_de_Padilla_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.2928631387847, -19.0139157924657] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Princess Juliana Int'l", + "abbrev": "SXM", + "location": "terminal", + "gps_code": "TNCM", + "iata_code": "SXM", + "wikipedia": "http://en.wikipedia.org/wiki/Princess_Juliana_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.1122760858602, 18.042244021474] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Ta'izz Int'l", + "abbrev": "TAI", + "location": "terminal", + "gps_code": "OYTZ", + "iata_code": "TAI", + "wikipedia": "http://en.wikipedia.org/wiki/Ta'izz_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [44.134782731062, 13.6854970025574] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Qingdao Liuting Int'l", + "abbrev": "TAO", + "location": "terminal", + "gps_code": "ZSQD", + "iata_code": "TAO", + "wikipedia": "http://en.wikipedia.org/wiki/Qingdao_Liuting_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [120.380685949061, 36.2677578081039] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Chuuk Int'l", + "abbrev": "TKK", + "location": "terminal", + "gps_code": "PTKK", + "iata_code": "TKK", + "wikipedia": "http://en.wikipedia.org/wiki/Chuuk_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [151.842046037403, 7.45761780288443] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Tangier Ibn Battouta", + "abbrev": "TNG", + "location": "terminal", + "gps_code": "GMTT", + "iata_code": "TNG", + "wikipedia": "http://en.wikipedia.org/wiki/Tangier_Ibn_Battouta_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.91288087655914, 35.7257656409274] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Bonriki Int'l", + "abbrev": "TRW", + "location": "ramp", + "gps_code": "NGTA", + "iata_code": "TRW", + "wikipedia": "http://en.wikipedia.org/wiki/Bonriki_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [173.145990795301, 1.3806686975383] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Astana Int'l", + "abbrev": "TSE", + "location": "terminal", + "gps_code": "UACC", + "iata_code": "TSE", + "wikipedia": "http://en.wikipedia.org/wiki/Astana_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [71.4609441399936, 51.0269352907712] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Tianjin Binhai Int'l", + "abbrev": "TSN", + "location": "terminal", + "gps_code": "ZBTJ", + "iata_code": "TSN", + "wikipedia": "http://en.wikipedia.org/wiki/Tianjin_Binhai_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [117.352723159919, 39.1294609909008] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major and military", + "name": "Townsville", + "abbrev": "TSV", + "location": "terminal", + "gps_code": "YBTL", + "iata_code": "TSV", + "wikipedia": "http://en.wikipedia.org/wiki/Townsville_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [146.77067890477, -19.2561814376212] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Teniente Gen. Benjamin Matienzo Int'l", + "abbrev": "TUC", + "location": "terminal", + "gps_code": "SANT", + "iata_code": "TUC", + "wikipedia": "http://en.wikipedia.org/wiki/Benjam%C3%ADn_Matienzo_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.1081246236248, -26.8357310050714] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Aeroport Tunis", + "abbrev": "TUN", + "location": "terminal", + "gps_code": "DTTA", + "iata_code": "TUN", + "wikipedia": "http://en.wikipedia.org/wiki/Tunis-Carthage_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [10.2176992447111, 36.8474482177219] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Tucson Int'l", + "abbrev": "TUS", + "location": "terminal", + "gps_code": "KTUS", + "iata_code": "TUS", + "wikipedia": "http://en.wikipedia.org/wiki/Tucson_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.937713232132, 32.1203523441898] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Chinggis Khaan Int'l", + "abbrev": "ULN", + "location": "terminal", + "gps_code": "ZMUB", + "iata_code": "ULN", + "wikipedia": "http://en.wikipedia.org/wiki/Chinggis_Khaan_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [106.762873994929, 47.8525260966684] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Urumqi Diwopu Int'l", + "abbrev": "URC", + "location": "terminal", + "gps_code": "ZWWW", + "iata_code": "URC", + "wikipedia": "http://en.wikipedia.org/wiki/%C3%9Cr%C3%BCmqi_Diwopu_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [87.4671298487808, 43.8983382193653] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Bauerfield Int'l", + "abbrev": "VLI", + "location": "terminal", + "gps_code": "NVVV", + "iata_code": "VLI", + "wikipedia": "http://en.wikipedia.org/wiki/Bauerfield_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [168.319622739662, -17.7016990681781] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Wewak Int'l", + "abbrev": "WWK", + "location": "terminal", + "gps_code": "AYWK", + "iata_code": "WWK", + "wikipedia": "http://en.wikipedia.org/wiki/Wewak_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [143.669102299698, -3.58022689444744] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "military mid", + "name": "Chalons Vatry", + "abbrev": "XCR", + "location": "terminal", + "gps_code": "LFOK", + "iata_code": "XCR", + "wikipedia": "http://en.wikipedia.org/wiki/Ch%C3%A2lons_Vatry_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [4.19111982574289, 48.7803946138566] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Xiamen Gaoqi Int'l", + "abbrev": "XMN", + "location": "terminal", + "gps_code": "ZSAM", + "iata_code": "XMN", + "wikipedia": "http://en.wikipedia.org/wiki/Xiamen_Gaoqi_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [118.12696884672, 24.537192570557] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Yap Int'l", + "abbrev": "YAP", + "location": "terminal", + "gps_code": "PTYA", + "iata_code": "YAP", + "wikipedia": "http://en.wikipedia.org/wiki/Yap_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [138.086430283619, 9.49791733361348] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Playa de Oro Int'l", + "abbrev": "ZLO", + "location": "terminal", + "gps_code": "MMZO", + "iata_code": "ZLO", + "wikipedia": "http://en.wikipedia.org/wiki/Playa_de_Oro_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.560095200097, 19.1480860285854] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Cayenne – Rochambeau", + "abbrev": "CAY", + "location": "terminal", + "gps_code": "SOCA", + "iata_code": "CAY", + "wikipedia": "http://en.wikipedia.org/wiki/Cayenne-Rochambeau_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.3638068572357, 4.82126714308924] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Irkutsk N.W.", + "abbrev": "UIII", + "location": "ramp", + "gps_code": "UIIR", + "iata_code": "UIIR", + "wikipedia": "http://en.wikipedia.org/wiki/Irkutsk_Northwest_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [104.197359284494, 52.3616476700132] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Shijiazhuang Zhengding Int'l", + "abbrev": "SJW", + "location": "terminal", + "gps_code": "ZBSJ", + "iata_code": "SJW", + "wikipedia": "http://en.wikipedia.org/wiki/Shijiazhuang_Zhengding_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [114.692266598902, 38.278140913112] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Heydar Aliyev Int'l", + "abbrev": "GYD", + "location": "terminal", + "gps_code": "UBBB", + "iata_code": "GYD", + "wikipedia": "http://en.wikipedia.org/wiki/Heydar_Aliyev_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [50.0498394867405, 40.462746883908] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "military mid", + "name": "Lakatamia Airbase", + "abbrev": "LAK", + "location": "ramp", + "gps_code": "LCRO", + "iata_code": "LAK", + "wikipedia": "http://en.wikipedia.org/wiki/List_of_airports_in_Cyprus", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [33.322201334899, 35.1063448067362] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Cabo Frio Int'l", + "abbrev": "CFB", + "location": "terminal", + "gps_code": "SBCB", + "iata_code": "CFB", + "wikipedia": "http://en.wikipedia.org/wiki/Cabo_Frio_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.0792517520184, -22.9256317091328] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Helsinki-Malmi", + "abbrev": "HEM", + "location": "terminal", + "gps_code": "EFHF", + "iata_code": "HEM", + "wikipedia": "http://en.wikipedia.org/wiki/Helsinki-Malmi_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.0455353698315, 60.2493778499587] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Luxembourg-Findel", + "abbrev": "LUX", + "location": "terminal", + "gps_code": "ELLX", + "iata_code": "LUX", + "wikipedia": "http://en.wikipedia.org/wiki/Luxembourg-Findel_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [6.21642121728731, 49.6343040925102] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Venice Marco Polo", + "abbrev": "VCE", + "location": "terminal", + "gps_code": "LIPZ", + "iata_code": "VCE", + "wikipedia": "http://en.wikipedia.org/wiki/Marco_Polo_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [12.3410673004369, 45.5048477588455] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Yangyang Int'l", + "abbrev": "YNY", + "location": "terminal", + "gps_code": "RKNY", + "iata_code": "YNY", + "wikipedia": "http://en.wikipedia.org/wiki/Yangyang_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [128.66298866884, 38.0587824162585] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Tabatinga Int'l", + "abbrev": "TBT", + "location": "terminal", + "gps_code": "SBTT", + "iata_code": "TBT", + "wikipedia": "http://en.wikipedia.org/wiki/Tabatinga_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.939473933909, -4.25032469493379] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Boa Vista Int'l", + "abbrev": "BVB", + "location": "terminal", + "gps_code": "SBBV", + "iata_code": "BVB", + "wikipedia": "http://en.wikipedia.org/wiki/Boa_Vista_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.6922206338682, 2.84119534121157] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Gran Canaria", + "abbrev": "LPA", + "location": "terminal", + "gps_code": "GCLP", + "iata_code": "LPA", + "wikipedia": "http://en.wikipedia.org/wiki/Gran_Canaria_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-15.3899245158461, 27.9368899716574] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Com. Armando Tola Int'l", + "abbrev": "ING", + "location": "terminal", + "gps_code": "SAWA", + "iata_code": "ING", + "wikipedia": "http://en.wikipedia.org/wiki/Comandante_Armando_Tola_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.0538569101296, -50.2839008690038] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Stockholm-Skavsta", + "abbrev": "NYO", + "location": "terminal", + "gps_code": "ESKN", + "iata_code": "NYO", + "wikipedia": "http://en.wikipedia.org/wiki/Stockholm-Skavsta_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [16.9216055584254, 58.7851041303448] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Polonia Int'l", + "abbrev": "MES", + "location": "terminal", + "gps_code": "WIMM", + "iata_code": "MES", + "wikipedia": "http://en.wikipedia.org/wiki/Polonia_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [98.6761925714641, 3.56659179990894] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Bangui M'Poko Int'l", + "abbrev": "BGF", + "location": "terminal", + "gps_code": "FEFF", + "iata_code": "BGF", + "wikipedia": "http://en.wikipedia.org/wiki/Bangui_M'Poko_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [18.524123630208, 4.39885153695957] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Hangzhou Xiaoshan Int'l", + "abbrev": "HGH", + "location": "terminal", + "gps_code": "ZSHC", + "iata_code": "HGH", + "wikipedia": "http://en.wikipedia.org/wiki/Hangzhou_Xiaoshan_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [120.432097376313, 30.2351862790414] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Cassidy Int'l", + "abbrev": "CXI", + "location": "runway", + "gps_code": "PLCH", + "iata_code": "CXI", + "wikipedia": "http://en.wikipedia.org/wiki/Cassidy_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.34977789343, 1.98616119792402] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Siauliai Int'l", + "abbrev": "SQQ", + "location": "runway", + "gps_code": "EYSA", + "iata_code": "SQQ", + "wikipedia": "http://en.wikipedia.org/wiki/%C5%A0iauliai_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [23.3831885738691, 55.90376945404] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Niue Int'l", + "abbrev": "IUE", + "location": "terminal", + "gps_code": "NIUE", + "iata_code": "IUE", + "wikipedia": "http://en.wikipedia.org/wiki/Niue_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-169.926129774217, -19.0767129354511] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Guarani Int'l", + "abbrev": "AGT", + "location": "terminal", + "gps_code": "SGES", + "iata_code": "AGT", + "wikipedia": "http://en.wikipedia.org/wiki/Guarani_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.8393995296062, -25.4568570715812] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid", + "name": "Rodriguez Ballon Int'l", + "abbrev": "AQP", + "location": "terminal", + "gps_code": "SPQU", + "iata_code": "AQP", + "wikipedia": "http://en.wikipedia.org/wiki/Rodriguez_Ballon_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.5679335385285, -16.344552065352] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "mid and military", + "name": "Vladivostok Int'l", + "abbrev": "VVO", + "location": "terminal", + "gps_code": "UHWW", + "iata_code": "VVO", + "wikipedia": "http://en.wikipedia.org/wiki/Vladivostok_International_Airport", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [132.139841720715, 43.3776492533885] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 7, + "type": "major", + "name": "Pristina", + "abbrev": "PRN", + "location": "ramp", + "gps_code": "BKPR", + "iata_code": "PRN", + "wikipedia": "http://en.wikipedia.org/wiki/Pristina_International_Airport_Adem_Jashari", + "natlscale": 15, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [21.0302690124746, 42.5850331153448] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Deurne", + "abbrev": "ANR", + "location": "terminal", + "gps_code": "EBAW", + "iata_code": "ANR", + "wikipedia": "http://en.wikipedia.org/wiki/Antwerp_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [4.45092277399909, 51.1891285063806] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Gen. Marquez de Leon Int'l", + "abbrev": "LAP", + "location": "terminal", + "gps_code": "MMLP", + "iata_code": "LAP", + "wikipedia": "http://en.wikipedia.org/wiki/Manuel_M%C3%A1rquez_de_Le%C3%B3n_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.367197859809, 24.0760903521803] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Harbin Taiping", + "abbrev": "HRB", + "location": "terminal", + "gps_code": "ZYHB", + "iata_code": "HRB", + "wikipedia": "http://en.wikipedia.org/wiki/Harbin_Taiping_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [126.236983030863, 45.6206011723245] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Trivandrum Int'l", + "abbrev": "TRV", + "location": "terminal", + "gps_code": "VOTV", + "iata_code": "TRV", + "wikipedia": "http://en.wikipedia.org/wiki/Trivandrum_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [76.9189025612913, 8.47650993894514] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Adnan Menderes", + "abbrev": "ADB", + "location": "terminal", + "gps_code": "LTBJ", + "iata_code": "ADB", + "wikipedia": "http://en.wikipedia.org/wiki/Adnan_Menderes_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [27.1492975952664, 38.2912347645175] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Nanjing Lukou Int'l", + "abbrev": "NKG", + "location": "terminal", + "gps_code": "ZSNJ", + "iata_code": "NKG", + "wikipedia": "http://en.wikipedia.org/wiki/Nanjing_Lukou_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [118.866102146906, 31.7353249296177] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Freeport Int'l", + "abbrev": "FPO", + "location": "terminal", + "gps_code": "MYGF", + "iata_code": "FPO", + "wikipedia": "http://en.wikipedia.org/wiki/Grand_Bahama_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.7039343114497, 26.548246747189] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Tripoli Int'l", + "abbrev": "TIP", + "location": "terminal", + "gps_code": "HLLT", + "iata_code": "TIP", + "wikipedia": "http://en.wikipedia.org/wiki/Tripoli_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [13.1442589810713, 32.6691695504993] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Gander Int'l", + "abbrev": "YQX", + "location": "terminal", + "gps_code": "CYQX", + "iata_code": "YQX", + "wikipedia": "http://en.wikipedia.org/wiki/Gander_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.5755719093578, 48.9465980060736] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major and military", + "name": "Doha Int'l", + "abbrev": "DOH", + "location": "terminal", + "gps_code": "OTBD", + "iata_code": "DOH", + "wikipedia": "http://en.wikipedia.org/wiki/Doha_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [51.5585487876547, 25.2682461310506] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Albuquerque Int'l", + "abbrev": "ABQ", + "location": "terminal", + "gps_code": "KABQ", + "iata_code": "ABQ", + "wikipedia": "http://en.wikipedia.org/wiki/Albuquerque_International_Sunport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.6166851616, 35.0491578018277] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "V.C. Bird Int'l", + "abbrev": "ANU", + "location": "terminal", + "gps_code": "TAPA", + "iata_code": "ANU", + "wikipedia": "http://en.wikipedia.org/wiki/VC_Bird_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.7923676698358, 17.1403599371617] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Faleolo", + "abbrev": "APW", + "location": "terminal", + "gps_code": "NSFA", + "iata_code": "APW", + "wikipedia": "http://en.wikipedia.org/wiki/Faleolo_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-171.99732221834, -13.8325013323956] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Asyut", + "abbrev": "ATZ", + "location": "terminal", + "gps_code": "HEAT", + "iata_code": "ATZ", + "wikipedia": "http://en.wikipedia.org/wiki/Assiut_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [31.0162490438011, 27.0508158406978] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Bahrain Int'l", + "abbrev": "BAH", + "location": "terminal", + "gps_code": "OBBI", + "iata_code": "BAH", + "wikipedia": "http://en.wikipedia.org/wiki/Bahrain_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [50.6260028757534, 26.2696971499497] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Bradley Int'l", + "abbrev": "BDL", + "location": "terminal", + "gps_code": "KBDL", + "iata_code": "BDL", + "wikipedia": "http://en.wikipedia.org/wiki/Bradley_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.685394743339, 41.9303160058352] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Grantley Adams Int'l", + "abbrev": "BGI", + "location": "terminal", + "gps_code": "TBPB", + "iata_code": "BGI", + "wikipedia": "http://en.wikipedia.org/wiki/Grantley_Adams_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.4874188953159, 13.079661104553] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Yundum Int'l", + "abbrev": "BJL", + "location": "terminal", + "gps_code": "GBYD", + "iata_code": "BJL", + "wikipedia": "http://en.wikipedia.org/wiki/Banjul_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.6523132698075, 13.3438604788942] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Bujumbura Int'l", + "abbrev": "BJM", + "location": "terminal", + "gps_code": "HBBA", + "iata_code": "BJM", + "wikipedia": "http://en.wikipedia.org/wiki/Bujumbura_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [29.3209840169939, -3.32204434913113] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Chileka Int'l", + "abbrev": "BLZ", + "location": "terminal", + "gps_code": "FWCL", + "iata_code": "BLZ", + "wikipedia": "http://en.wikipedia.org/wiki/Chileka_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [34.9719441837933, -15.6813844793273] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Broome Int'l", + "abbrev": "BME", + "location": "terminal", + "gps_code": "YBRM", + "iata_code": "BME", + "wikipedia": "http://en.wikipedia.org/wiki/Broome_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [122.233850515022, -17.952576129268] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Bandar Abbass Int'l", + "abbrev": "BND", + "location": "terminal", + "gps_code": "OIKB", + "iata_code": "BND", + "wikipedia": "http://en.wikipedia.org/wiki/Bandar_Abbas_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [56.368886456411, 27.2103258455145] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Basrah Int'l", + "abbrev": "BSR", + "location": "terminal", + "gps_code": "ORMM", + "iata_code": "BSR", + "wikipedia": "http://en.wikipedia.org/wiki/Basra_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [47.6683766633518, 30.552799016106] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Ciudad Juarez Int'l", + "abbrev": "CJS", + "location": "terminal", + "gps_code": "MMCS", + "iata_code": "CJS", + "wikipedia": "http://en.wikipedia.org/wiki/Abraham_Gonz%C3%A1lez_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.435846631055, 31.6357566201951] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Katunayake Int'l", + "abbrev": "CMB", + "location": "terminal", + "gps_code": "VCBI", + "iata_code": "CMB", + "wikipedia": "http://en.wikipedia.org/wiki/Bandaranaike_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [79.8852573421506, 7.17807710544221] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Cairns Int'l", + "abbrev": "CNS", + "location": "terminal", + "gps_code": "YBCS", + "iata_code": "CNS", + "wikipedia": "http://en.wikipedia.org/wiki/Cairns_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [145.7535848444, -16.8767421554062] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Chiang Mai Int'l", + "abbrev": "CNX", + "location": "terminal", + "gps_code": "VTCC", + "iata_code": "CNX", + "wikipedia": "http://en.wikipedia.org/wiki/Chiang_Mai_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [98.9681181241593, 18.7688473919675] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "City of Colorado Springs", + "abbrev": "COS", + "location": "terminal", + "gps_code": "KCOS", + "iata_code": "COS", + "wikipedia": "http://en.wikipedia.org/wiki/Colorado_Springs_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.700880274111, 38.7974248779125] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Ign. Alberto Ongay Int'l", + "abbrev": "CPE", + "location": "terminal", + "gps_code": "MMCP", + "iata_code": "CPE", + "wikipedia": "http://en.wikipedia.org/wiki/Ing._Alberto_Acu%C3%B1a_Ongay_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.5036283734038, 19.8142247992074] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Changsha Huanghua Int'l", + "abbrev": "CSX", + "location": "terminal", + "gps_code": "ZGHA", + "iata_code": "CSX", + "wikipedia": "http://en.wikipedia.org/wiki/Changsha_airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [113.214054203252, 28.1899218619451] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Greater Cincinnati Int'l", + "abbrev": "CVG", + "location": "terminal", + "gps_code": "KCVG", + "iata_code": "CVG", + "wikipedia": "http://en.wikipedia.org/wiki/Cincinnati/Northern_Kentucky_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.6561699153392, 39.055418904783] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Da Nang", + "abbrev": "DAD", + "location": "terminal", + "gps_code": "VVDN", + "iata_code": "DAD", + "wikipedia": "http://en.wikipedia.org/wiki/Da_Nang_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [108.202706257936, 16.053144145167] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Dallas Love Field", + "abbrev": "DAL", + "location": "terminal", + "gps_code": "KDAL", + "iata_code": "DAL", + "wikipedia": "http://en.wikipedia.org/wiki/Dallas_Love_Field", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.84986377098, 32.8444253732738] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Damascus Int'l", + "abbrev": "DAM", + "location": "terminal", + "gps_code": "OSDI", + "iata_code": "DAM", + "wikipedia": "http://en.wikipedia.org/wiki/Damascus_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [36.5128954718126, 33.4114366702732] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Enrique Malek Int'l", + "abbrev": "DAV", + "location": "terminal", + "gps_code": "MPDA", + "iata_code": "DAV", + "wikipedia": "http://en.wikipedia.org/wiki/Enrique_Malek_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.4317583369387, 8.39126106116918] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Aba Tenna D. Yilma Int'l", + "abbrev": "DIR", + "location": "terminal", + "gps_code": "HADR", + "iata_code": "DIR", + "wikipedia": "http://en.wikipedia.org/wiki/Aba_Tenna_Dejazmach_Yilma_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [41.857756722253, 9.61267784753569] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Bali Int'l", + "abbrev": "DPS", + "location": "terminal", + "gps_code": "WADD", + "iata_code": "DPS", + "wikipedia": "http://en.wikipedia.org/wiki/Ngurah_Rai_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [115.162322961107, -8.74475731595652] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Des Moines Int'l", + "abbrev": "DSM", + "location": "terminal", + "gps_code": "KDSM", + "iata_code": "DSM", + "wikipedia": "http://en.wikipedia.org/wiki/Des_Moines_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.6484612563736, 41.5327904242113] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Entebbe Int'l", + "abbrev": "EBB", + "location": "terminal", + "gps_code": "HUEN", + "iata_code": "EBB", + "wikipedia": "http://en.wikipedia.org/wiki/Entebbe_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [32.4427573135214, 0.044940949388672] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Kisangani Bangoka Int'l", + "abbrev": "FKI", + "location": "terminal", + "gps_code": "FZIC", + "iata_code": "FKI", + "wikipedia": "http://en.wikipedia.org/wiki/Bangoka_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.3302714896212, 0.492225136917501] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Fuzhou Changle Int'l", + "abbrev": "FOC", + "location": "terminal", + "gps_code": "ZSFZ", + "iata_code": "FOC", + "wikipedia": "http://en.wikipedia.org/wiki/Fuzhou_Changle_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [119.668043820999, 25.9318233148143] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Lokpriya G. Bordoloi Int'l", + "abbrev": "GAU", + "location": "terminal", + "gps_code": "VEGT", + "iata_code": "GAU", + "wikipedia": "http://en.wikipedia.org/wiki/Lokpriya_Gopinath_Bordoloi_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [91.588229058187, 26.1052475924255] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Gdansk Lech Walesa", + "abbrev": "GDN", + "location": "terminal", + "gps_code": "EPGD", + "iata_code": "GDN", + "wikipedia": "http://en.wikipedia.org/wiki/Gda%C5%84sk_Lech_Wa%C5%82%C4%99sa_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [18.4684422165911, 54.3807025352925] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Point Salines Int'l", + "abbrev": "GND", + "location": "terminal", + "gps_code": "TGPY", + "iata_code": "GND", + "wikipedia": "http://en.wikipedia.org/wiki/Point_Salines_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.7858529909285, 12.0072683054283] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Nizhny Novgorod Int'l", + "abbrev": "GOJ", + "location": "terminal", + "gps_code": "UWGG", + "iata_code": "GOJ", + "wikipedia": "http://en.wikipedia.org/wiki/Nizhny_Novgorod_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [43.7896337062935, 56.2185525910656] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Gen. Jose M. Yanez Int'l", + "abbrev": "GYM", + "location": "terminal", + "gps_code": "MMGM", + "iata_code": "GYM", + "wikipedia": "http://en.wikipedia.org/wiki/General_Jos%C3%A9_Mar%C3%ADa_Y%C3%A1%C3%B1ez_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.921651270402, 27.9694553962829] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Hohhot Baita Int'l", + "abbrev": "HET", + "location": "terminal", + "gps_code": "ZBHH", + "iata_code": "HET", + "wikipedia": "http://en.wikipedia.org/wiki/Hohhot_Baita_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [111.814681821626, 40.8540600906552] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Helena Reg.", + "abbrev": "HLN", + "location": "terminal", + "gps_code": "KHLN", + "iata_code": "HLN", + "wikipedia": "http://en.wikipedia.org/wiki/Helena_Regional_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.989896896008, 46.6102043529] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Gen. Ignacio P. Garcia Int'l", + "abbrev": "HMO", + "location": "terminal", + "gps_code": "MMHO", + "iata_code": "HMO", + "wikipedia": "http://en.wikipedia.org/wiki/General_Ignacio_Pesqueira_Garcia_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.051901711819, 29.0900772523445] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Dulles Int'l", + "abbrev": "IAD", + "location": "terminal", + "gps_code": "KIAD", + "iata_code": "IAD", + "wikipedia": "http://en.wikipedia.org/wiki/Washington_Dulles_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.4477925769206, 38.952774037953] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Hilo Int'l", + "abbrev": "ITO", + "location": "terminal", + "gps_code": "PHTO", + "iata_code": "ITO", + "wikipedia": "http://en.wikipedia.org/wiki/Hilo_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-155.039629733435, 19.7147976868663] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Jackson Int'l", + "abbrev": "JAN", + "location": "terminal", + "gps_code": "KJAN", + "iata_code": "JAN", + "wikipedia": "http://en.wikipedia.org/wiki/Jackson-Evers_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.0750986276924, 32.3100600273635] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Jacksonville Int'l", + "abbrev": "JAX", + "location": "terminal", + "gps_code": "KJAX", + "iata_code": "JAX", + "wikipedia": "http://en.wikipedia.org/wiki/Jacksonville_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.6835767278311, 30.491352730948] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Kuching Int'l", + "abbrev": "KCH", + "location": "terminal", + "gps_code": "WBGG", + "iata_code": "KCH", + "wikipedia": "http://en.wikipedia.org/wiki/Kuching_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [110.341837054315, 1.4872079377901] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Kigali Int'l", + "abbrev": "KGL", + "location": "terminal", + "gps_code": "HRYR", + "iata_code": "KGL", + "wikipedia": "http://en.wikipedia.org/wiki/Kigali_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [30.1348768187856, -1.96365443664138] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Balice", + "abbrev": "KRK", + "location": "terminal", + "gps_code": "EPKK", + "iata_code": "KRK", + "wikipedia": "http://en.wikipedia.org/wiki/John_Paul_II_International_Airport_Krak%C3%B3w-Balice", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [19.8009772844504, 50.0722630648331] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Kurumoch", + "abbrev": "KUF", + "location": "terminal", + "gps_code": "UWWW", + "iata_code": "KUF", + "wikipedia": "http://en.wikipedia.org/wiki/Kurumoch_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [50.1472655210191, 53.5083848190935] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Guilin Liangjiang Int'l", + "abbrev": "KWL", + "location": "terminal", + "gps_code": "ZGKL", + "iata_code": "KWL", + "wikipedia": "http://en.wikipedia.org/wiki/Guilin_Liangjiang_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [110.04689349777, 25.2176055252293] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Laoag Int'l", + "abbrev": "LAO", + "location": "terminal", + "gps_code": "RPLI", + "iata_code": "LAO", + "wikipedia": "http://en.wikipedia.org/wiki/Laoag_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [120.533876196127, 18.1824180866379] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "LaGuardia", + "abbrev": "LGA", + "location": "terminal", + "gps_code": "KLGA", + "iata_code": "LGA", + "wikipedia": "http://en.wikipedia.org/wiki/LaGuardia_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.8719858204814, 40.7745539398858] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "London Gatwick", + "abbrev": "LGW", + "location": "terminal", + "gps_code": "EGKK", + "iata_code": "LGW", + "wikipedia": "http://en.wikipedia.org/wiki/London_Gatwick_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.162961639139456, 51.1557567519275] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Ljubljana", + "abbrev": "LJU", + "location": "terminal", + "gps_code": "LJLJ", + "iata_code": "LJU", + "wikipedia": "http://en.wikipedia.org/wiki/Ljubljana_Jo%C5%BEe_Pu%C4%8Dnik_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [14.4548126283266, 46.2305445554486] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Amausi Int'l", + "abbrev": "LKO", + "location": "terminal", + "gps_code": "VILK", + "iata_code": "LKO", + "wikipedia": "http://en.wikipedia.org/wiki/Amausi_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [80.8841719732472, 26.7639328700916] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "La Plata", + "abbrev": "LPG", + "location": "terminal", + "gps_code": "SADL", + "iata_code": "LPG", + "wikipedia": "http://en.wikipedia.org/wiki/La_Plata_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.895382063651, -34.9655441559234] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Gen. Sevando Canales", + "abbrev": "MAM", + "location": "terminal", + "gps_code": "MMMA", + "iata_code": "MAM", + "wikipedia": "http://en.wikipedia.org/wiki/General_Servando_Canales_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.5308217121187, 25.7708412640619] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Manchester Int'l", + "abbrev": "MAN", + "location": "terminal", + "gps_code": "EGCC", + "iata_code": "MAN", + "wikipedia": "http://en.wikipedia.org/wiki/Manchester_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.27337159069427, 53.3624896066518] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Kansas City Int'l", + "abbrev": "MCI", + "location": "terminal", + "gps_code": "KMCI", + "iata_code": "MCI", + "wikipedia": "http://en.wikipedia.org/wiki/Kansas_City_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.7159148579154, 39.2978958263659] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Seeb Int'l", + "abbrev": "MCT", + "location": "terminal", + "gps_code": "OOMS", + "iata_code": "MCT", + "wikipedia": "http://en.wikipedia.org/wiki/Seeb_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [58.2904804753493, 23.5885704175856] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Habib Bourguiba Int'l", + "abbrev": "MIR", + "location": "terminal", + "gps_code": "DTMB", + "iata_code": "MIR", + "wikipedia": "http://en.wikipedia.org/wiki/Habib_Bourguiba_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [10.753368185054, 35.760710442178] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Marseille Provence Airport", + "abbrev": "MRS", + "location": "terminal", + "gps_code": "LFML", + "iata_code": "MRS", + "wikipedia": "http://en.wikipedia.org/wiki/Marseille_Provence_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [5.22137917720337, 43.4410600016468] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Quetzalcoatl Int'l", + "abbrev": "NLD", + "location": "terminal", + "gps_code": "MMNL", + "iata_code": "NLD", + "wikipedia": "http://en.wikipedia.org/wiki/Quetzalc%C3%B3atl_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.5680081930063, 27.4496896508316] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Nanning Wuwu Int'l", + "abbrev": "NNG", + "location": "terminal", + "gps_code": "ZGNN", + "iata_code": "NNG", + "wikipedia": "http://en.wikipedia.org/wiki/Nanning_Wuxu_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [108.168012273331, 22.6120370541785] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Xoxocotlan Int'l", + "abbrev": "OAX", + "location": "terminal", + "gps_code": "MMOX", + "iata_code": "OAX", + "wikipedia": "http://en.wikipedia.org/wiki/Xoxocotl%C3%A1n_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.7217959384975, 17.0005592569745] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Kahului", + "abbrev": "OGG", + "location": "terminal", + "gps_code": "PHOG", + "iata_code": "OGG", + "wikipedia": "http://en.wikipedia.org/wiki/Kahului_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.437429581353, 20.8932885151112] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Will Rogers", + "abbrev": "OKC", + "location": "terminal", + "gps_code": "KOKC", + "iata_code": "OKC", + "wikipedia": "http://en.wikipedia.org/wiki/Will_Rogers_World_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.5961177542092, 35.3952774911744] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Norfolk Int'l", + "abbrev": "ORF", + "location": "terminal", + "gps_code": "KORF", + "iata_code": "ORF", + "wikipedia": "http://en.wikipedia.org/wiki/Norfolk_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.2044231712327, 36.8982394673674] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Palm Beach Int'l", + "abbrev": "PBI", + "location": "terminal", + "gps_code": "KPBI", + "iata_code": "PBI", + "wikipedia": "http://en.wikipedia.org/wiki/Palm_Beach_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.0901893383387, 26.688441666433] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Pengel Int'l", + "abbrev": "PBM", + "location": "terminal", + "gps_code": "SMJP", + "iata_code": "PBM", + "wikipedia": "http://en.wikipedia.org/wiki/Johan_Adolf_Pengel_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.1999113892902, 5.45599967797439] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Bolshesavino", + "abbrev": "PEE", + "location": "terminal", + "gps_code": "USPP", + "iata_code": "PEE", + "wikipedia": "http://en.wikipedia.org/wiki/Bolshoye_Savino_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [56.0195602820297, 57.9197711231691] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Penang Int'l", + "abbrev": "PEN", + "location": "terminal", + "gps_code": "WMKP", + "iata_code": "PEN", + "wikipedia": "http://en.wikipedia.org/wiki/Penang_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [100.265786380955, 5.29265627790489] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Port Harcourt Int'l", + "abbrev": "PHC", + "location": "terminal", + "gps_code": "DNPO", + "iata_code": "PHC", + "wikipedia": "http://en.wikipedia.org/wiki/Port_Harcourt_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [6.94989742723191, 5.00700347673944] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Port Hedland Int'l", + "abbrev": "PHE", + "location": "terminal", + "gps_code": "YPPD", + "iata_code": "PHE", + "wikipedia": "http://en.wikipedia.org/wiki/Port_Hedland_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [118.631797815615, -20.3781272960723] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Pierre Regional", + "abbrev": "PIR", + "location": "terminal", + "gps_code": "KPIR", + "iata_code": "PIR", + "wikipedia": "http://en.wikipedia.org/wiki/Pierre_Regional_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.292641981705, 44.3801534668762] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Greater Pittsburgh Int'l", + "abbrev": "PIT", + "location": "terminal", + "gps_code": "KPIT", + "iata_code": "PIT", + "wikipedia": "http://en.wikipedia.org/wiki/Pittsburgh_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.2561290571918, 40.4960518915285] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Pago Pago Int'l", + "abbrev": "PPG", + "location": "terminal", + "gps_code": "NSTU", + "iata_code": "PPG", + "wikipedia": "http://en.wikipedia.org/wiki/Pago_Pago_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-170.713307053734, -14.3290641850306] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Birmingham Int'l", + "abbrev": "BHX", + "location": "terminal", + "gps_code": "EGBB", + "iata_code": "BHX", + "wikipedia": "http://en.wikipedia.org/wiki/Birmingham_International_Airport_(United_Kingdom)", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.73373170434452, 52.4529085542838] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Roberts Int'l", + "abbrev": "ROB", + "location": "terminal", + "gps_code": "GLRB", + "iata_code": "ROB", + "wikipedia": "http://en.wikipedia.org/wiki/Roberts_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.3530851867934, 6.24183456554526] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Raipur", + "abbrev": "RPR", + "location": "terminal", + "gps_code": "VARP", + "iata_code": "RPR", + "wikipedia": "http://en.wikipedia.org/wiki/Raipur_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [81.7403775915201, 21.1859868561447] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "El Salvador Int'l", + "abbrev": "SAL", + "location": "terminal", + "gps_code": "MSLP", + "iata_code": "SAL", + "wikipedia": "http://en.wikipedia.org/wiki/Cuscatlan_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.0572035692743, 13.4447481228616] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "San Diego Int'l", + "abbrev": "SAN", + "location": "terminal", + "gps_code": "KSAN", + "iata_code": "SAN", + "wikipedia": "http://en.wikipedia.org/wiki/San_Diego_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.197511025731, 32.7322645570132] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "San Antonio Int'l", + "abbrev": "SAT", + "location": "terminal", + "gps_code": "KSAT", + "iata_code": "SAT", + "wikipedia": "http://en.wikipedia.org/wiki/San_Antonio_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.4719699991559, 29.5266203391315] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Savannah Int'l", + "abbrev": "SAV", + "location": "terminal", + "gps_code": "KSAV", + "iata_code": "SAV", + "wikipedia": "http://en.wikipedia.org/wiki/Savannah/Hilton_Head_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.2099647750913, 32.1356415522902] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Antonio Maceo", + "abbrev": "SCU", + "location": "terminal", + "gps_code": "MUCU", + "iata_code": "SCU", + "wikipedia": "http://en.wikipedia.org/wiki/Antonio_Maceo_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.8398877639791, 19.9724288717622] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Ponciano Arriaga Int'l", + "abbrev": "SLP", + "location": "terminal", + "gps_code": "MMSP", + "iata_code": "SLP", + "wikipedia": "http://en.wikipedia.org/wiki/Ponciano_Arriaga_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.936477816267, 22.2557130495903] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Sacramento Int'l", + "abbrev": "SMF", + "location": "terminal", + "gps_code": "KSMF", + "iata_code": "SMF", + "wikipedia": "http://en.wikipedia.org/wiki/Sacramento_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.587894877723, 38.6927238925554] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Cibao Int'l", + "abbrev": "STI", + "location": "terminal", + "gps_code": "MDST", + "iata_code": "STI", + "wikipedia": "http://en.wikipedia.org/wiki/Cibao_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.6941783224468, 19.4659219152888] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Koltsovo", + "abbrev": "SVX", + "location": "terminal", + "gps_code": "USSS", + "iata_code": "SVX", + "wikipedia": "http://en.wikipedia.org/wiki/Koltsovo_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [60.8058033432174, 56.732245612046] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Syracuse Hancock Int'l", + "abbrev": "SYR", + "location": "terminal", + "gps_code": "KSYR", + "iata_code": "SYR", + "wikipedia": "http://en.wikipedia.org/wiki/Syracuse_Hancock_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.1130789991049, 43.1317844943741] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Tabriz", + "abbrev": "TBZ", + "location": "terminal", + "gps_code": "OITT", + "iata_code": "TBZ", + "wikipedia": "http://en.wikipedia.org/wiki/Tabriz_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [46.244713373574, 38.1311107688175] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Torreon Int'l", + "abbrev": "TRC", + "location": "terminal", + "gps_code": "MMTC", + "iata_code": "TRC", + "wikipedia": "http://en.wikipedia.org/wiki/Francisco_Sarabia_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.398787828579, 25.5632164399896] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Tulsa Int'l", + "abbrev": "TUL", + "location": "terminal", + "gps_code": "KTUL", + "iata_code": "TUL", + "wikipedia": "http://en.wikipedia.org/wiki/Tulsa_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.889882271542, 36.190127565195] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Mcghee Tyson", + "abbrev": "TYS", + "location": "terminal", + "gps_code": "KTYS", + "iata_code": "TYS", + "wikipedia": "http://en.wikipedia.org/wiki/McGhee_Tyson_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.9899378327585, 35.8057448027088] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Ufa Int'l", + "abbrev": "UFA", + "location": "terminal", + "gps_code": "UWUU", + "iata_code": "UFA", + "wikipedia": "http://en.wikipedia.org/wiki/Ufa_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [55.8840773411837, 54.5651323578972] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Hewanorra Int'l", + "abbrev": "UVF", + "location": "terminal", + "gps_code": "TLPL", + "iata_code": "UVF", + "wikipedia": "http://en.wikipedia.org/wiki/Hewanorra_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.9499737723461, 13.7365238050489] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Windhoek Hosea Kutako Int'l", + "abbrev": "WDH", + "location": "terminal", + "gps_code": "FYWH", + "iata_code": "WDH", + "wikipedia": "http://en.wikipedia.org/wiki/Windhoek_Hosea_Kutako_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [17.4632259028133, -22.4869531202041] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Sault Ste Marie", + "abbrev": "YAM", + "location": "terminal", + "gps_code": "CYAM", + "iata_code": "YAM", + "wikipedia": "http://en.wikipedia.org/wiki/Sault_Ste._Marie_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.5006089999718, 46.4854175101926] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Dawson Cr.", + "abbrev": "YDQ", + "location": "terminal", + "gps_code": "CYDQ", + "iata_code": "YDQ", + "wikipedia": "http://en.wikipedia.org/wiki/Dawson_Creek_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.185595619101, 55.7394117074557] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Edmonton Int'l", + "abbrev": "YEG", + "location": "terminal", + "gps_code": "CYEG", + "iata_code": "YEG", + "wikipedia": "http://en.wikipedia.org/wiki/Edmonton_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-113.584492564406, 53.3072001619183] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Halifax Int'l", + "abbrev": "YHZ", + "location": "terminal", + "gps_code": "CYHZ", + "iata_code": "YHZ", + "wikipedia": "http://en.wikipedia.org/wiki/Halifax_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.5149652501673, 44.886545450101] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Kamloops", + "abbrev": "YKA", + "location": "terminal", + "gps_code": "CYKA", + "iata_code": "YKA", + "wikipedia": "http://en.wikipedia.org/wiki/Kamloops_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-120.441734763962, 50.7051955184591] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Sudbury", + "abbrev": "YSB", + "location": "terminal", + "gps_code": "CYSB", + "iata_code": "YSB", + "wikipedia": "http://en.wikipedia.org/wiki/Sudbury_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.7957747817105, 46.6227508204893] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Saint John", + "abbrev": "YSJ", + "location": "terminal", + "gps_code": "CYSJ", + "iata_code": "YSJ", + "wikipedia": "http://en.wikipedia.org/wiki/Saint_John_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.8905573681168, 45.3292305955017] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Prince George", + "abbrev": "YXS", + "location": "terminal", + "gps_code": "CYXS", + "iata_code": "YXS", + "wikipedia": "http://en.wikipedia.org/wiki/Prince_George_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.674014743986, 53.8842485751138] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Victoria Int'l", + "abbrev": "YYJ", + "location": "terminal", + "gps_code": "CYYJ", + "iata_code": "YYJ", + "wikipedia": "http://en.wikipedia.org/wiki/Victoria_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.430624539528, 48.640529482179] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Zamboanga Int'l", + "abbrev": "ZAM", + "location": "terminal", + "gps_code": "RPMZ", + "iata_code": "ZAM", + "wikipedia": "http://en.wikipedia.org/wiki/Zamboanga_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [122.062432321637, 6.9197577480583] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Lanzhou Zhongchuan", + "abbrev": "ZGC", + "location": "terminal", + "gps_code": "ZLLL", + "iata_code": "ZGC", + "wikipedia": "http://en.wikipedia.org/wiki/Lanzhou_Zhongchuan_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [103.615415363043, 36.5078842461237] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Albany Int'l", + "abbrev": "ALB", + "location": "terminal", + "gps_code": "KALB", + "iata_code": "ALB", + "wikipedia": "http://en.wikipedia.org/wiki/Albany_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.8093518843173, 42.7456619801729] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "General Mitchell Int'l", + "abbrev": "MKE", + "location": "terminal", + "gps_code": "KMKE", + "iata_code": "MKE", + "wikipedia": "http://en.wikipedia.org/wiki/General_Mitchell_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.9021056250744, 42.9479198729586] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "military mid", + "name": "Wang-Chia Tun Airbase", + "abbrev": "ZHHH", + "location": "runway", + "gps_code": null, + "iata_code": null, + "wikipedia": null, + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [114.24694737615, 30.6017141196702] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Sanya Phoenix Int'l", + "abbrev": "SYX", + "location": "terminal", + "gps_code": "ZJSY", + "iata_code": "SYX", + "wikipedia": "http://en.wikipedia.org/wiki/Sanya_Phoenix_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [109.40823949108, 18.3090959908593] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Lhasa Gonggar", + "abbrev": "LXA", + "location": "terminal", + "gps_code": "ZULS", + "iata_code": "LXA", + "wikipedia": "http://en.wikipedia.org/wiki/Lhasa_Gonggar_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [90.9005610194027, 29.2936936123184] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Hotan", + "abbrev": "HTN", + "location": "terminal", + "gps_code": "ZWTN", + "iata_code": "HTN", + "wikipedia": "http://en.wikipedia.org/wiki/Hotan_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [79.8723005212192, 37.0400363509765] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Dresden", + "abbrev": "DRS", + "location": "terminal", + "gps_code": "EDDC", + "iata_code": "DRS", + "wikipedia": "http://en.wikipedia.org/wiki/Dresden_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [13.7649671440047, 51.1250912428871] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "military major", + "name": "Kenitra Air Base", + "abbrev": "NNA", + "location": "terminal", + "gps_code": "GMMY", + "iata_code": "NNA", + "wikipedia": "http://en.wikipedia.org/wiki/Kenitra_Air_Base", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.597753628116, 34.2986673638223] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Annemasse", + "abbrev": "QNJ", + "location": "ramp", + "gps_code": "LFLI", + "iata_code": "QNJ", + "wikipedia": "http://en.wikipedia.org/wiki/Annemasse_Aerodrome", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [6.26491085364159, 46.1957283286261] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Nogales Int'l", + "abbrev": "NOG", + "location": "terminal", + "gps_code": "MMNG", + "iata_code": "NOG", + "wikipedia": "http://en.wikipedia.org/wiki/Nogales_International_Airport_(Mexico)", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-110.972721301675, 31.2255371741159] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Strasbourg", + "abbrev": "SXB", + "location": "terminal", + "gps_code": "LFST", + "iata_code": "SXB", + "wikipedia": "http://en.wikipedia.org/wiki/Strasbourg_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [7.62784196688924, 48.5446961721759] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Cologne/Bonn", + "abbrev": "CGN", + "location": "terminal", + "gps_code": "EDDK", + "iata_code": "CGN", + "wikipedia": "http://en.wikipedia.org/wiki/Cologne_Bonn_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [7.12235975524539, 50.8782596629471] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Kimhae Int'l", + "abbrev": "PUS", + "location": "terminal", + "gps_code": "RKPK", + "iata_code": "PUS", + "wikipedia": "http://en.wikipedia.org/wiki/Gimhae_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [128.948801379039, 35.170284063683] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Jeju Int'l", + "abbrev": "CJU", + "location": "terminal", + "gps_code": "RKPC", + "iata_code": "CJU", + "wikipedia": "http://en.wikipedia.org/wiki/Jeju_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [126.491629401972, 33.5247173150399] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Stavanger Sola", + "abbrev": "SVG", + "location": "terminal", + "gps_code": "ENZV", + "iata_code": "SVG", + "wikipedia": "http://en.wikipedia.org/wiki/Stavanger_Airport,_Sola", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [5.6298103297218, 58.8821564842185] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Trondheim Vaernes", + "abbrev": "TRD", + "location": "terminal", + "gps_code": "ENVA", + "iata_code": "TRD", + "wikipedia": "http://en.wikipedia.org/wiki/Trondheim_Airport%2C_V%C3%A6rnes", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [10.9168095241445, 63.472029381717] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Corumba Int'l", + "abbrev": "CMG", + "location": "terminal", + "gps_code": "SBCR", + "iata_code": "CMG", + "wikipedia": "http://en.wikipedia.org/wiki/Corumba_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.6636078925543, -19.0141662885534] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Madeira", + "abbrev": "FNC", + "location": "terminal", + "gps_code": "LPMA", + "iata_code": "FNC", + "wikipedia": "http://en.wikipedia.org/wiki/Madeira_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.7756374531213, 32.6933642847489] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Foz do Iguaçu Int'l", + "abbrev": "IGU", + "location": "terminal", + "gps_code": "SBFI", + "iata_code": "IGU", + "wikipedia": "http://en.wikipedia.org/wiki/Foz_do_Igua%C3%A7u_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.4885922735633, -25.5976832162102] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Gov. Jorge Teixeira de Oliveira Int'l", + "abbrev": "PVH", + "location": "terminal", + "gps_code": "SBPV", + "iata_code": "PVH", + "wikipedia": "http://en.wikipedia.org/wiki/Governador_Jorge_Teixeira_de_Oliveira_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.8984625004213, -8.71442482859288] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Bilbao", + "abbrev": "BIO", + "location": "terminal", + "gps_code": "LEBB", + "iata_code": "BIO", + "wikipedia": "http://en.wikipedia.org/wiki/Bilbao_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.90609011679805, 43.3050829811195] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Palma de Mallorca", + "abbrev": "PMI", + "location": "terminal", + "gps_code": "LEPA", + "iata_code": "PMI", + "wikipedia": "http://en.wikipedia.org/wiki/Palma_de_Mallorca_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [2.72997660200647, 39.5657758586254] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Tenerife N.", + "abbrev": "TFN", + "location": "terminal", + "gps_code": "GCXO", + "iata_code": "TFN", + "wikipedia": "http://en.wikipedia.org/wiki/Los_Rodeos_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.3463175679264, 28.4875770267731] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Gothenburg", + "abbrev": "GOT", + "location": "terminal", + "gps_code": "ESGG", + "iata_code": "GOT", + "wikipedia": "http://en.wikipedia.org/wiki/Gothenburg-Landvetter_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [12.2938269092573, 57.6857493534879] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Lulea", + "abbrev": "LLA", + "location": "terminal", + "gps_code": "ESPA", + "iata_code": "LLA", + "wikipedia": "http://en.wikipedia.org/wiki/Lule%C3%A5_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [22.1230271243945, 65.5490362477616] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Abu Dhabi Int'l", + "abbrev": "AUH", + "location": "terminal", + "gps_code": "OMAA", + "iata_code": "AUH", + "wikipedia": "http://en.wikipedia.org/wiki/Abu_Dhabi_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [54.6463293225558, 24.4272271529764] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Mohamed Boudiaf Int'l", + "abbrev": "CZL", + "location": "terminal", + "gps_code": "DABC", + "iata_code": "CZL", + "wikipedia": "http://en.wikipedia.org/wiki/Mohamed_Boudiaf_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [6.62194665181219, 36.2834409441601] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Aswan Int'l", + "abbrev": "ASW", + "location": "terminal", + "gps_code": "HESN", + "iata_code": "ASW", + "wikipedia": "http://en.wikipedia.org/wiki/Aswan_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [32.8244372462973, 23.9682765441778] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Rovaniemi", + "abbrev": "RVN", + "location": "terminal", + "gps_code": "EFRO", + "iata_code": "RVN", + "wikipedia": "http://en.wikipedia.org/wiki/Rovaniemi_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.8294409760452, 66.5595564168509] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Cheddi Jagan Int'l", + "abbrev": "GEO", + "location": "terminal", + "gps_code": "SYCJ", + "iata_code": "GEO", + "wikipedia": "http://en.wikipedia.org/wiki/Cheddi_Jagan_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.2541191925889, 6.49855290813572] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Cochin Int'l", + "abbrev": "COK", + "location": "terminal", + "gps_code": "VOCI", + "iata_code": "COK", + "wikipedia": "http://en.wikipedia.org/wiki/Cochin_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [76.3905198502024, 10.1551187628118] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Eldoret Int'l", + "abbrev": "EDL", + "location": "terminal", + "gps_code": "HKEL", + "iata_code": "EDL", + "wikipedia": "http://en.wikipedia.org/wiki/Eldoret_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [35.2236930658301, 0.40507147546036] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major", + "name": "Incheon Int'l", + "abbrev": "ICN", + "location": "terminal", + "gps_code": "RKSI", + "iata_code": "ICN", + "wikipedia": "http://en.wikipedia.org/wiki/Incheon_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [126.450875980796, 37.4492088624346] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "mid", + "name": "Federal de Bachigualato Int'l", + "abbrev": "CUL", + "location": "terminal", + "gps_code": "MMCL", + "iata_code": "CUL", + "wikipedia": "http://en.wikipedia.org/wiki/Federal_de_Bachigualato_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-107.469863792896, 24.7668040390461] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 6, + "type": "major and military", + "name": "Benazir Bhutto Int'l", + "abbrev": "ISB", + "location": "terminal", + "gps_code": "OPRN", + "iata_code": "ISB", + "wikipedia": "http://en.wikipedia.org/wiki/Islamabad_International_Airport", + "natlscale": 20, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.1007936471882, 33.6074457507526] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Brussels", + "abbrev": "BRU", + "location": "terminal", + "gps_code": "EBBR", + "iata_code": "BRU", + "wikipedia": "http://en.wikipedia.org/wiki/Brussels_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [4.48464032408272, 50.8972949641511] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Abuja Int'l", + "abbrev": "ABV", + "location": "terminal", + "gps_code": "DNAA", + "iata_code": "ABV", + "wikipedia": "http://en.wikipedia.org/wiki/Nnamdi_Azikiwe_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [7.27025993974356, 9.00437659781094] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "Arcata-Eureka", + "abbrev": "ACV", + "location": "terminal", + "gps_code": "KACV", + "iata_code": "ACV", + "wikipedia": "http://en.wikipedia.org/wiki/Arcata-Eureka_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-124.107065520139, 40.9719245381314] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Austin-Bergstrom Int'l", + "abbrev": "AUS", + "location": "terminal", + "gps_code": "KAUS", + "iata_code": "AUS", + "wikipedia": "http://en.wikipedia.org/wiki/Austin-Bergstrom_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.6668367646054, 30.2021081920749] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Antalya", + "abbrev": "AYT", + "location": "terminal", + "gps_code": "LTAI", + "iata_code": "AYT", + "wikipedia": "http://en.wikipedia.org/wiki/Antalya_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [30.8025526439415, 36.9153233051868] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Belfast Int'l", + "abbrev": "BFS", + "location": "terminal", + "gps_code": "EGAA", + "iata_code": "BFS", + "wikipedia": "http://en.wikipedia.org/wiki/Belfast_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.21616943734958, 54.6615575470103] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Orio Al Serio", + "abbrev": "BGY", + "location": "terminal", + "gps_code": "LIME", + "iata_code": "BGY", + "wikipedia": "http://en.wikipedia.org/wiki/Orio_al_Serio_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [9.6989176939974, 45.6654980560695] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "Kota Kinabalu Int'l", + "abbrev": "BKI", + "location": "terminal", + "gps_code": "WBKK", + "iata_code": "BKI", + "wikipedia": "http://en.wikipedia.org/wiki/Kota_Kinabalu_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [116.051087873369, 5.92289445474807] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Bengaluru Int'l", + "abbrev": "BLR", + "location": "terminal", + "gps_code": "VOBL", + "iata_code": "BLR", + "wikipedia": "http://en.wikipedia.org/wiki/Bengaluru_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [77.7095579889575, 13.2006108069609] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Canberra Int'l", + "abbrev": "CBR", + "location": "terminal", + "gps_code": "YSCB", + "iata_code": "CBR", + "wikipedia": "http://en.wikipedia.org/wiki/Canberra_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [149.190760539671, -35.3071855902909] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Port Columbus Int'l", + "abbrev": "CMH", + "location": "terminal", + "gps_code": "KCMH", + "iata_code": "CMH", + "wikipedia": "http://en.wikipedia.org/wiki/Port_Columbus_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.8840306426634, 39.9981181922432] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Mohamed V Int'l", + "abbrev": "CMN", + "location": "terminal", + "gps_code": "GMMN", + "iata_code": "CMN", + "wikipedia": "http://en.wikipedia.org/wiki/Mohammed_V_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.5814559902572, 33.3747274815396] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Dusseldorf Int'l", + "abbrev": "DUS", + "location": "terminal", + "gps_code": "EDDL", + "iata_code": "DUS", + "wikipedia": "http://en.wikipedia.org/wiki/D%C3%BCsseldorf_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76494446612174, 51.2781820420774] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Esenboga Int'l", + "abbrev": "ESB", + "location": "terminal", + "gps_code": "LTAC", + "iata_code": "ESB", + "wikipedia": "http://en.wikipedia.org/wiki/Esenbo%C4%9Fa_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [32.9930100772014, 40.1151278273234] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "Hamilton Int'l", + "abbrev": "HLZ", + "location": "terminal", + "gps_code": "NZHN", + "iata_code": "HLZ", + "wikipedia": "http://en.wikipedia.org/wiki/Hamilton_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [175.336221432708, -37.8658411484827] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Rajiv Gandhi Int'l", + "abbrev": "HYD", + "location": "terminal", + "gps_code": "VOHS", + "iata_code": "HYD", + "wikipedia": "http://en.wikipedia.org/wiki/Rajiv_Gandhi_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [78.42953613452, 17.2359831507471] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "John F Kennedy Int'l", + "abbrev": "JFK", + "location": "parking", + "gps_code": "KJFK", + "iata_code": "JFK", + "wikipedia": "http://en.wikipedia.org/wiki/John_F._Kennedy_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.7863268609296, 40.6459595584081] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Boryspil Int'l", + "abbrev": "KBP", + "location": "terminal", + "gps_code": "UKBB", + "iata_code": "KBP", + "wikipedia": "http://en.wikipedia.org/wiki/Boryspil_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [30.8951621615528, 50.340902338877] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Khartoum", + "abbrev": "KRT", + "location": "terminal", + "gps_code": "HSSS", + "iata_code": "KRT", + "wikipedia": "http://en.wikipedia.org/wiki/Khartoum_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [32.550153296633, 15.5922226530858] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Dane Cty. Reg. (Truax Field)", + "abbrev": "MSN", + "location": "terminal", + "gps_code": "KMSN", + "iata_code": "MSN", + "wikipedia": "http://en.wikipedia.org/wiki/Dane_County_Regional_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.3457847894487, 43.1363082385868] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Minsk Int'l", + "abbrev": "MSQ", + "location": "terminal", + "gps_code": "UMMS", + "iata_code": "MSQ", + "wikipedia": "http://en.wikipedia.org/wiki/Minsk_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [28.0341933346378, 53.8893792398005] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Palermo", + "abbrev": "PMO", + "location": "terminal", + "gps_code": "LICJ", + "iata_code": "PMO", + "wikipedia": "http://en.wikipedia.org/wiki/Palermo_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [13.1055309888638, 38.1863351084895] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "T.F. Green", + "abbrev": "PVD", + "location": "terminal", + "gps_code": "KPVD", + "iata_code": "PVD", + "wikipedia": "http://en.wikipedia.org/wiki/T._F._Green_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.4357841445789, 41.7260019847189] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Southwest Florida Int'l", + "abbrev": "RSW", + "location": "terminal", + "gps_code": "KRSW", + "iata_code": "RSW", + "wikipedia": "http://en.wikipedia.org/wiki/Southwest_Florida_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.7551231409306, 26.5279288067651] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Shenyang Taoxian Int'l", + "abbrev": "SHE", + "location": "terminal", + "gps_code": "ZYTX", + "iata_code": "SHE", + "wikipedia": "http://en.wikipedia.org/wiki/Shenyang_Taoxian_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [123.487974430339, 41.6347891339582] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Sharjah Int'l", + "abbrev": "SHJ", + "location": "terminal", + "gps_code": "OMSJ", + "iata_code": "SHJ", + "wikipedia": "http://en.wikipedia.org/wiki/Sharjah_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [55.5205071948853, 25.3211964019068] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "San Jose Int'l", + "abbrev": "SJC", + "location": "terminal", + "gps_code": "KSJC", + "iata_code": "SJC", + "wikipedia": "http://en.wikipedia.org/wiki/San_Jose_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-121.929428983532, 37.3694905908966] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "John Wayne", + "abbrev": "SNA", + "location": "terminal", + "gps_code": "KSNA", + "iata_code": "SNA", + "wikipedia": "http://en.wikipedia.org/wiki/John_Wayne_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-117.861489220393, 33.6794857329549] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Stuttgart", + "abbrev": "STR", + "location": "terminal", + "gps_code": "EDDS", + "iata_code": "STR", + "wikipedia": "http://en.wikipedia.org/wiki/Stuttgart_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [9.19395108945536, 48.6901051358913] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "Nacional Tobias Bolanos", + "abbrev": "SYQ", + "location": "terminal", + "gps_code": "MRPV", + "iata_code": "SYQ", + "wikipedia": "http://en.wikipedia.org/wiki/Tob%C3%ADas_Bola%C3%B1os_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.1386091971594, 9.95827851919623] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Shenzhen Bao'an Int'l", + "abbrev": "SZX", + "location": "terminal", + "gps_code": "ZGSZ", + "iata_code": "SZX", + "wikipedia": "http://en.wikipedia.org/wiki/Shenzhen_airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [113.815852751085, 22.6465077147868] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Louisville Int'l", + "abbrev": "SDF", + "location": "terminal", + "gps_code": "KSDF", + "iata_code": "SDF", + "wikipedia": "http://en.wikipedia.org/wiki/Louisville_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.7417027597367, 38.1860207152699] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Geneva", + "abbrev": "GVA", + "location": "terminal", + "gps_code": "LSGG", + "iata_code": "GVA", + "wikipedia": "http://en.wikipedia.org/wiki/Geneva_Cointrin_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [6.10794577423603, 46.231009510158] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "Lyon-Saint Exupery", + "abbrev": "LYS", + "location": "terminal", + "gps_code": "LFLL", + "iata_code": "LYS", + "wikipedia": "http://en.wikipedia.org/wiki/Lyon-Saint_Exup%C3%A9ry_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [5.07594431813459, 45.7210186834669] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Kansai Int'l", + "abbrev": "KIX", + "location": "terminal", + "gps_code": "RJBB", + "iata_code": "KIX", + "wikipedia": "http://en.wikipedia.org/wiki/Kansai_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [135.244459772476, 34.434794162927] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Lisbon Portela", + "abbrev": "LIS", + "location": "terminal", + "gps_code": "LPPT", + "iata_code": "LIS", + "wikipedia": "http://en.wikipedia.org/wiki/Lisbon_Portela_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.13069440931071, 38.7707623427514] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Tancredo Neves Int'l", + "abbrev": "CNF", + "location": "terminal", + "gps_code": "SBCF", + "iata_code": "CNF", + "wikipedia": "http://en.wikipedia.org/wiki/Tancredo_Neves_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.9635815209949, -19.6327821218747] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "Bromma", + "abbrev": "BMA", + "location": "terminal", + "gps_code": "ESSB", + "iata_code": "BMA", + "wikipedia": "http://en.wikipedia.org/wiki/Stockholm-Bromma_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [17.9456175406145, 59.3555902065112] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Juanda Int'l", + "abbrev": "SUB", + "location": "terminal", + "gps_code": "WARR", + "iata_code": "SUB", + "wikipedia": "http://en.wikipedia.org/wiki/Juanda_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [112.777034594933, -7.383578985276] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "Astor Piazzolla Int'l", + "abbrev": "MDQ", + "location": "terminal", + "gps_code": "SAZM", + "iata_code": "MDQ", + "wikipedia": "http://en.wikipedia.org/wiki/%C3%81stor_Piazzola_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.5816150932392, -37.9332161204482] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Owen Roberts Int'l", + "abbrev": "GCM", + "location": "terminal", + "gps_code": "MWCR", + "iata_code": "GCM", + "wikipedia": "http://en.wikipedia.org/wiki/Owen_Roberts_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.3576706162289, 19.2959107437122] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Zhengzhou Xinzheng Int'l", + "abbrev": "CGO", + "location": "terminal", + "gps_code": "ZHCC", + "iata_code": "CGO", + "wikipedia": "http://en.wikipedia.org/wiki/Zhengzhou_Xinzheng_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [113.841831302845, 34.5263027198957] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Dalian Zhoushuizi Int'l", + "abbrev": "DLC", + "location": "terminal", + "gps_code": "ZYTL", + "iata_code": "DLC", + "wikipedia": "http://en.wikipedia.org/wiki/Dalian_Zhoushuizi_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [121.538913780101, 38.9615702300222] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Heraklion Int'l", + "abbrev": "HER", + "location": "terminal", + "gps_code": "LGIR", + "iata_code": "HER", + "wikipedia": "http://en.wikipedia.org/wiki/Heraklion_International_Airport%2C_%22Nikos_Kazantzakis%22", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.1740558243272, 35.3369024101046] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "major", + "name": "Tbilisi Int'l", + "abbrev": "TBS", + "location": "terminal", + "gps_code": "UGTB", + "iata_code": "TBS", + "wikipedia": "http://en.wikipedia.org/wiki/Tbilisi_International_Airport", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [44.9646146141664, 41.6694420187261] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 5, + "type": "mid", + "name": "Cascais", + "abbrev": "XXC", + "location": "runway", + "gps_code": "LPCS", + "iata_code": "XXC", + "wikipedia": "http://en.wikipedia.org/wiki/Cascais_Aerodrome", + "natlscale": 30, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.35458240263928, 38.7235353208324] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Kaohsiung Int'l", + "abbrev": "KHH", + "location": "terminal", + "gps_code": "RCKH", + "iata_code": "KHH", + "wikipedia": "http://en.wikipedia.org/wiki/Kaohsiung_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [120.345156342151, 22.5717061054422] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Sadiq Abubakar III", + "abbrev": "SKO", + "location": "terminal", + "gps_code": "DNSO", + "iata_code": "SKO", + "wikipedia": "http://en.wikipedia.org/wiki/Sadiq_Abubakar_III_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [5.20022616032651, 12.9174824166181] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Mariscal Sucre Int'l", + "abbrev": "UIO", + "location": "terminal", + "gps_code": "SEQU", + "iata_code": "UIO", + "wikipedia": "http://en.wikipedia.org/wiki/Mariscal_Sucre_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.4899925545701, -0.145552408466882] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Karachi Civil", + "abbrev": "KHI", + "location": "terminal", + "gps_code": "OPKC", + "iata_code": "KHI", + "wikipedia": "http://en.wikipedia.org/wiki/Jinnah_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [67.1521283592947, 24.8985243689595] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Kishinev S.E.", + "abbrev": "KIV", + "location": "terminal", + "gps_code": "LUKK", + "iata_code": "KIV", + "wikipedia": "http://en.wikipedia.org/wiki/Chi%C5%9Fin%C4%83u_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [28.9360487562256, 46.9341619900391] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Jorge Chavez", + "abbrev": "LIM", + "location": "terminal", + "gps_code": "SPIM", + "iata_code": "LIM", + "wikipedia": "http://en.wikipedia.org/wiki/Jorge_Ch%C3%A1vez_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.1075656931342, -12.0237161502221] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Thunder Bay Int'l", + "abbrev": "YQT", + "location": "terminal", + "gps_code": "CYQT", + "iata_code": "YQT", + "wikipedia": "http://en.wikipedia.org/wiki/Thunder_Bay_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.3121421238136, 48.3718811492508] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Vilnius", + "abbrev": "VNO", + "location": "terminal", + "gps_code": "EYVI", + "iata_code": "VNO", + "wikipedia": "http://en.wikipedia.org/wiki/Vilnius_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.2807164497285, 54.6430549307542] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Hsien Yang", + "abbrev": "XIY", + "location": "terminal", + "gps_code": "ZLXY", + "iata_code": "XIY", + "wikipedia": "http://en.wikipedia.org/wiki/Xi'an_Xianyang_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [108.755811342151, 34.4429391054422] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Del Norte Int'l", + "abbrev": "NTR", + "location": "terminal", + "gps_code": "MMAN", + "iata_code": "NTR", + "wikipedia": "http://en.wikipedia.org/wiki/Del_Norte_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-100.238394186577, 25.859873767729] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Fua'amotu Int'l", + "abbrev": "TBU", + "location": "terminal", + "gps_code": "NFTF", + "iata_code": "TBU", + "wikipedia": "http://en.wikipedia.org/wiki/Fua'amotu_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-175.135635, -21.24861] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Esfahan Int'l", + "abbrev": "IFN", + "location": "terminal", + "gps_code": "OIFM", + "iata_code": "IFN", + "wikipedia": "http://en.wikipedia.org/wiki/Isfahan_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [51.8763916812681, 32.7460805344321] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Harare Int'l", + "abbrev": "HRE", + "location": "terminal", + "gps_code": "FVHA", + "iata_code": "HRE", + "wikipedia": "http://en.wikipedia.org/wiki/Harare_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [31.1014, -17.9228] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Kuwait Int'l", + "abbrev": "KWI", + "location": "terminal", + "gps_code": "OKBK", + "iata_code": "KWI", + "wikipedia": "http://en.wikipedia.org/wiki/Kuwait_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [47.9714825593317, 29.2396800581583] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Macdonald-Cartier Int'l", + "abbrev": "YOW", + "location": "terminal", + "gps_code": "CYOW", + "iata_code": "YOW", + "wikipedia": "http://en.wikipedia.org/wiki/Ottawa_Macdonald-Cartier_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.6648933870205, 45.3201348196531] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Kabul Int'l", + "abbrev": "KBL", + "location": "terminal", + "gps_code": "OAKB", + "iata_code": "KBL", + "wikipedia": "http://en.wikipedia.org/wiki/Kabul_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [69.2100736270874, 34.5633978864149] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Abidjan Port Bouet", + "abbrev": "ABJ", + "location": "terminal", + "gps_code": "DIAP", + "iata_code": "ABJ", + "wikipedia": "http://en.wikipedia.org/wiki/Port_Bouet_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.93221929167636, 5.2543984451492] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "General Juan N Alvarez Int'l", + "abbrev": "ACA", + "location": "terminal", + "gps_code": "MMAA", + "iata_code": "ACA", + "wikipedia": "http://en.wikipedia.org/wiki/General_Juan_N._%C3%81lvarez_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.7545085619681, 16.76196735278] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Kotoka Int'l", + "abbrev": "ACC", + "location": "terminal", + "gps_code": "DGAA", + "iata_code": "ACC", + "wikipedia": "http://en.wikipedia.org/wiki/Kotoka_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.171402855660817, 5.60698152381193] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Bole Int'l", + "abbrev": "ADD", + "location": "terminal", + "gps_code": "HAAB", + "iata_code": "ADD", + "wikipedia": "http://en.wikipedia.org/wiki/Bole_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [38.7931904366343, 8.98173027581099] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Aden Int'l", + "abbrev": "ADE", + "location": "terminal", + "gps_code": "OYAA", + "iata_code": "ADE", + "wikipedia": "http://en.wikipedia.org/wiki/Aden_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [45.030602, 12.8278] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Adelaide Int'l", + "abbrev": "ADL", + "location": "terminal", + "gps_code": "YPAD", + "iata_code": "ADL", + "wikipedia": "http://en.wikipedia.org/wiki/Adelaide_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [138.532101457699, -34.9405860275154] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Almaty Int'l", + "abbrev": "ALA", + "location": "terminal", + "gps_code": "UAAA", + "iata_code": "ALA", + "wikipedia": "http://en.wikipedia.org/wiki/Almaty_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [77.0120458771175, 43.3464943144793] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Houari Boumediene", + "abbrev": "ALG", + "location": "terminal", + "gps_code": "DAAG", + "iata_code": "ALG", + "wikipedia": "http://en.wikipedia.org/wiki/Houari_Boumedienne_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [3.21207353516506, 36.6997206663535] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Aleppo Int'l", + "abbrev": "ALP", + "location": "terminal", + "gps_code": "OSAP", + "iata_code": "ALP", + "wikipedia": "http://en.wikipedia.org/wiki/Aleppo_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [37.2273414057828, 36.1846237314314] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Sardar Vallabhbhai Patel Int'l", + "abbrev": "AMD", + "location": "terminal", + "gps_code": "VAAH", + "iata_code": "AMD", + "wikipedia": "http://en.wikipedia.org/wiki/Sardar_Vallabhbhai_Patel_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [72.6209000884332, 23.0707454635881] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Cerro Moreno Int'l", + "abbrev": "ANF", + "location": "terminal", + "gps_code": "SCFA", + "iata_code": "ANF", + "wikipedia": "http://en.wikipedia.org/wiki/Cerro_Moreno_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.4409908509407, -23.4489545248317] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Ashkhabad Northwest", + "abbrev": "ASB", + "location": "terminal", + "gps_code": "UTAA", + "iata_code": "ASB", + "wikipedia": "http://en.wikipedia.org/wiki/Ashgabat_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [58.3639659208246, 37.984853438957] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Yohannes Iv Int'l", + "abbrev": "ASM", + "location": "terminal", + "gps_code": "HHAS", + "iata_code": "ASM", + "wikipedia": "http://en.wikipedia.org/wiki/Asmara_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [38.9063540136321, 15.2936159696499] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Silvio Pettirossi Int'l", + "abbrev": "ASU", + "location": "terminal", + "gps_code": "SGAS", + "iata_code": "ASU", + "wikipedia": "http://en.wikipedia.org/wiki/Silvio_Pettirossi_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.5139078247136, -25.2416592533816] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Bermuda Int'l", + "abbrev": "BDA", + "location": "terminal", + "gps_code": "TXKF", + "iata_code": "BDA", + "wikipedia": "http://en.wikipedia.org/wiki/Bermuda_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.7027740686514, 32.3591739601581] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Surcin", + "abbrev": "BEG", + "location": "terminal", + "gps_code": "LYBE", + "iata_code": "BEG", + "wikipedia": "http://en.wikipedia.org/wiki/Belgrade_Nikola_Tesla_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [20.2912845946621, 44.8190766654433] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Beirut Int'l", + "abbrev": "BEY", + "location": "terminal", + "gps_code": "OLBA", + "iata_code": "BEY", + "wikipedia": "http://en.wikipedia.org/wiki/Beirut_Rafic_Hariri_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [35.4930853618161, 33.8254400618668] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Bairagarh", + "abbrev": "BHO", + "location": "terminal", + "gps_code": "VABP", + "iata_code": "BHO", + "wikipedia": "http://en.wikipedia.org/wiki/Bhopal_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [77.3408714713579, 23.2855684869809] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Bamako Senou", + "abbrev": "BKO", + "location": "terminal", + "gps_code": "GABS", + "iata_code": "BKO", + "wikipedia": "http://en.wikipedia.org/wiki/Senou_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.94727226970801, 12.5393363425867] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Nashville Int'l", + "abbrev": "BNA", + "location": "terminal", + "gps_code": "KBNA", + "iata_code": "BNA", + "wikipedia": "http://en.wikipedia.org/wiki/Nashville_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.6692867356375, 36.1314876361697] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Brisbane Int'l", + "abbrev": "BNE", + "location": "terminal", + "gps_code": "YBBN", + "iata_code": "BNE", + "wikipedia": "http://en.wikipedia.org/wiki/Brisbane_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [153.120256418844, -27.3853965939099] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Boise Air Terminal", + "abbrev": "BOI", + "location": "terminal", + "gps_code": "KBOI", + "iata_code": "BOI", + "wikipedia": "http://en.wikipedia.org/wiki/Boise_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.221841070549, 43.5689592234704] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Wiley Post Will Rogers Mem.", + "abbrev": "BRW", + "location": "terminal", + "gps_code": "PABR", + "iata_code": "BRW", + "wikipedia": "http://en.wikipedia.org/wiki/Wiley_Post-Will_Rogers_Memorial_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-156.771835, 71.289299] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Greater Buffalo Int'l", + "abbrev": "BUF", + "location": "terminal", + "gps_code": "KBUF", + "iata_code": "BUF", + "wikipedia": "http://en.wikipedia.org/wiki/Buffalo_Niagara_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.7319965523308, 42.9340337493526] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Bulawayo", + "abbrev": "BUQ", + "location": "terminal", + "gps_code": "FVBU", + "iata_code": "BUQ", + "wikipedia": "http://en.wikipedia.org/wiki/Joshua_Mqabuko_Nkomo_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [28.622552042904, -20.0155684094908] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Brunei Int'l", + "abbrev": "BWN", + "location": "terminal", + "gps_code": "WBSB", + "iata_code": "BWN", + "wikipedia": "http://en.wikipedia.org/wiki/Brunei_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [114.933119029209, 4.94547528227685] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Guangzhou Baiyun Int'l", + "abbrev": "CAN", + "location": "terminal", + "gps_code": "ZGGG", + "iata_code": "CAN", + "wikipedia": "http://en.wikipedia.org/wiki/Guangzhou_Baiyun_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [113.297516552171, 23.3891511573243] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Carriel Sur Int'l", + "abbrev": "CCP", + "location": "terminal", + "gps_code": "SCIE", + "iata_code": "CCP", + "wikipedia": "http://en.wikipedia.org/wiki/Carriel_Sur_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.0621061746214, -36.7763727437881] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Netaji Subhash Chandra Bose Int'l", + "abbrev": "CCU", + "location": "terminal", + "gps_code": "VECC", + "iata_code": "CCU", + "wikipedia": "http://en.wikipedia.org/wiki/Netaji_Subhash_Chandra_Bose_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [88.4400010130197, 22.6453893785064] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Chittagong", + "abbrev": "CGP", + "location": "terminal", + "gps_code": "VGEG", + "iata_code": "CGP", + "wikipedia": "http://en.wikipedia.org/wiki/Shah_Amanat_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [91.8147107162383, 22.2455658585738] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Christchurch Int'l", + "abbrev": "CHC", + "location": "terminal", + "gps_code": "NZCH", + "iata_code": "CHC", + "wikipedia": "http://en.wikipedia.org/wiki/Christchurch_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [172.538675565223, -43.4885486784104] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Conakry", + "abbrev": "CKY", + "location": "terminal", + "gps_code": "GUCY", + "iata_code": "CKY", + "wikipedia": "http://en.wikipedia.org/wiki/Conakry_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.6210656251671, 9.57418115850082] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Hopkins Int'l", + "abbrev": "CLE", + "location": "terminal", + "gps_code": "KCLE", + "iata_code": "CLE", + "wikipedia": "http://en.wikipedia.org/wiki/Cleveland_Hopkins_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.8384406064046, 41.4111916124966] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Alfonso Bonilla Aragon Int'l", + "abbrev": "CLO", + "location": "terminal", + "gps_code": "SKCL", + "iata_code": "CLO", + "wikipedia": "http://en.wikipedia.org/wiki/Alfonso_Bonilla_Arag%C3%B3n_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.3850714728091, 3.54328635123219] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Cotonou Cadjehon", + "abbrev": "COO", + "location": "terminal", + "gps_code": "DBBB", + "iata_code": "COO", + "wikipedia": "http://en.wikipedia.org/wiki/Cadjehoun_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [2.3838000724352, 6.3582465034691] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Ingeniero Ambrosio L.V. Taravella Int'l", + "abbrev": "COR", + "location": "terminal", + "gps_code": "SACO", + "iata_code": "COR", + "wikipedia": "http://en.wikipedia.org/wiki/Ingeniero_Ambrosio_L.V._Taravella_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.2123157670801, -31.3156811684889] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Rafael Nunez", + "abbrev": "CTG", + "location": "terminal", + "gps_code": "SKCG", + "iata_code": "CTG", + "wikipedia": "http://en.wikipedia.org/wiki/Rafael_N%C3%BA%C3%B1ez_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.5123349559682, 10.4449381764915] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Cancun", + "abbrev": "CUN", + "location": "terminal", + "gps_code": "MMUN", + "iata_code": "CUN", + "wikipedia": "http://en.wikipedia.org/wiki/Canc%C3%BAn_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.8744172506694, 21.04019667144] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "General R F Villalobos Int'l", + "abbrev": "CUU", + "location": "terminal", + "gps_code": "MMCU", + "iata_code": "CUU", + "wikipedia": "http://en.wikipedia.org/wiki/General_Roberto_Fierro_Villalobos_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-105.969204692629, 28.7039984997679] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Zia Int'l Dhaka", + "abbrev": "DAC", + "location": "terminal", + "gps_code": "VGHS", + "iata_code": "DAC", + "wikipedia": "http://en.wikipedia.org/wiki/Zia_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [90.4049241599237, 23.8481243218127] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major and military", + "name": "Darwin Int'l", + "abbrev": "DRW", + "location": "terminal", + "gps_code": "YPDN", + "iata_code": "DRW", + "wikipedia": "http://en.wikipedia.org/wiki/Darwin_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [130.877501436774, -12.4080559966556] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Louis Botha", + "abbrev": "DUR", + "location": "terminal", + "gps_code": "FADN", + "iata_code": "DUR", + "wikipedia": "http://en.wikipedia.org/wiki/Durban_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [30.9457081940881, -29.965914250828] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Lubumbashi Luano Int'l", + "abbrev": "FBM", + "location": "terminal", + "gps_code": "FZQA", + "iata_code": "FBM", + "wikipedia": "http://en.wikipedia.org/wiki/Lubumbashi_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [27.5292, -11.5908] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Saiss", + "abbrev": "FEZ", + "location": "terminal", + "gps_code": "GMFF", + "iata_code": "FEZ", + "wikipedia": "http://en.wikipedia.org/wiki/Sa%C3%AFss_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.98214637678303, 33.9305251844673] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Kinshasa N Djili Int'l", + "abbrev": "FIH", + "location": "terminal", + "gps_code": "FZAA", + "iata_code": "FIH", + "wikipedia": "http://en.wikipedia.org/wiki/Kinshasa_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [15.4465162074561, -4.38916882197582] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Freetown Lungi", + "abbrev": "FNA", + "location": "terminal", + "gps_code": "GFLL", + "iata_code": "FNA", + "wikipedia": "http://en.wikipedia.org/wiki/Lungi_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.2002296786483, 8.61542361726369] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Sunan", + "abbrev": "FNJ", + "location": "terminal", + "gps_code": "ZKPY", + "iata_code": "FNJ", + "wikipedia": "http://en.wikipedia.org/wiki/Sunan_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [125.675321571201, 39.2001771667656] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Vasilyevka", + "abbrev": "FRU", + "location": "terminal", + "gps_code": "UAFM", + "iata_code": "FRU", + "wikipedia": "http://en.wikipedia.org/wiki/Manas_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [74.468800339909, 43.0554527233303] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Sir Seretse Khama Int'l", + "abbrev": "GBE", + "location": "terminal", + "gps_code": "FBSK", + "iata_code": "GBE", + "wikipedia": "http://en.wikipedia.org/wiki/Sir_Seretse_Khama_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.9243808264147, -24.5580718089441] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Don Miguel Hidalgo Int'l", + "abbrev": "GDL", + "location": "terminal", + "gps_code": "MMGL", + "iata_code": "GDL", + "wikipedia": "http://en.wikipedia.org/wiki/Don_Miguel_Hidalgo_y_Costilla_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-103.300766222752, 20.5246863485173] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Glasgow Int'l", + "abbrev": "GLA", + "location": "terminal", + "gps_code": "EGPF", + "iata_code": "GLA", + "wikipedia": "http://en.wikipedia.org/wiki/Glasgow_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.43167796995107, 55.8641828570355] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "La Aurora", + "abbrev": "GUA", + "location": "terminal", + "gps_code": "MGGT", + "iata_code": "GUA", + "wikipedia": "http://en.wikipedia.org/wiki/La_Aurora_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.530181111378, 14.5881608290051] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Simon Bolivar Int'l", + "abbrev": "GYE", + "location": "terminal", + "gps_code": "SEGU", + "iata_code": "GYE", + "wikipedia": "http://en.wikipedia.org/wiki/Jos%C3%A9_Joaqu%C3%ADn_de_Olmedo_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.887009643933, -2.15833790699136] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Noi Bai", + "abbrev": "HAN", + "location": "terminal", + "gps_code": "VVNB", + "iata_code": "HAN", + "wikipedia": "http://en.wikipedia.org/wiki/Noi_Bai_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [105.803759436806, 21.2145596707245] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Jose Marti Int'l", + "abbrev": "HAV", + "location": "terminal", + "gps_code": "MUHA", + "iata_code": "HAV", + "wikipedia": "http://en.wikipedia.org/wiki/Jos%C3%A9_Mart%C3%AD_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.4074206289499, 22.9973533364428] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Borg El Arab Int'l", + "abbrev": "HBE", + "location": "terminal", + "gps_code": "HEBA", + "iata_code": "HBE", + "wikipedia": "http://en.wikipedia.org/wiki/Borg_El_Arab_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [29.69266601523, 30.9183712786239] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "King Abdul Aziz Int'l", + "abbrev": "JED", + "location": "terminal", + "gps_code": "OEJN", + "iata_code": "JED", + "wikipedia": "http://en.wikipedia.org/wiki/King_Abdulaziz_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.1504996780448, 21.6706857878128] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Kano Mallam Aminu Int'l", + "abbrev": "KAN", + "location": "terminal", + "gps_code": "DNKN", + "iata_code": "KAN", + "wikipedia": "http://en.wikipedia.org/wiki/Mallam_Aminu_Kano_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [8.52213718395767, 12.0457071601746] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Kashi", + "abbrev": "KHG", + "location": "terminal", + "gps_code": "ZWSH", + "iata_code": "KHG", + "wikipedia": "http://en.wikipedia.org/wiki/Kashgar_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [76.0130148060075, 39.5379686306258] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Norman Manley Int'l", + "abbrev": "KIN", + "location": "terminal", + "gps_code": "MKJP", + "iata_code": "KIN", + "wikipedia": "http://en.wikipedia.org/wiki/Norman_Manley_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.7786897616577, 17.9375751552752] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Tribhuvan Int'l", + "abbrev": "KTM", + "location": "terminal", + "gps_code": "VNKT", + "iata_code": "KTM", + "wikipedia": "http://en.wikipedia.org/wiki/Tribhuvan_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [85.357139531668, 27.7002816751609] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Luanda 4 de Fevereiro", + "abbrev": "LAD", + "location": "terminal", + "gps_code": "FNLU", + "iata_code": "LAD", + "wikipedia": "http://en.wikipedia.org/wiki/Quatro_de_Fevereiro_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [13.2347957502699, -8.84831327917379] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Pulkovo 2", + "abbrev": "LED", + "location": "terminal", + "gps_code": "ULLI", + "iata_code": "LED", + "wikipedia": "http://en.wikipedia.org/wiki/Pulkovo_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [30.3070976454648, 59.8054061601897] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Allama Iqbal Int'l", + "abbrev": "LHE", + "location": "terminal", + "gps_code": "OPLA", + "iata_code": "LHE", + "wikipedia": "http://en.wikipedia.org/wiki/Allama_Iqbal_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [74.4108810181748, 31.5206296518206] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Kamuzu Int'l", + "abbrev": "LLW", + "location": "terminal", + "gps_code": "FWKI", + "iata_code": "LLW", + "wikipedia": "http://en.wikipedia.org/wiki/Lilongwe_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [33.7827885019788, -13.788622823746] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Lagos Murtala Muhammed", + "abbrev": "LOS", + "location": "terminal", + "gps_code": "DNMM", + "iata_code": "LOS", + "wikipedia": "http://en.wikipedia.org/wiki/Murtala_Mohammed_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [3.32112435281334, 6.57825944540467] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "El Alto Int'l", + "abbrev": "LPB", + "location": "terminal", + "gps_code": "SLLP", + "iata_code": "LPB", + "wikipedia": "http://en.wikipedia.org/wiki/El_Alto_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.1780055277945, -16.5098792213977] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Lusaka Int'l", + "abbrev": "LUN", + "location": "terminal", + "gps_code": "FLLS", + "iata_code": "LUN", + "wikipedia": "http://en.wikipedia.org/wiki/Lusaka_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [28.4455443211019, -15.3268522509447] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Luxor", + "abbrev": "LXR", + "location": "terminal", + "gps_code": "HELX", + "iata_code": "LXR", + "wikipedia": "http://en.wikipedia.org/wiki/Luxor_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [32.7032970848623, 25.6730347786023] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Chennai Int'l", + "abbrev": "MAA", + "location": "terminal", + "gps_code": "VOMM", + "iata_code": "MAA", + "wikipedia": "http://en.wikipedia.org/wiki/Chennai_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [80.1637759731545, 12.9825301669154] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "La Chinita Int'l", + "abbrev": "MAR", + "location": "terminal", + "gps_code": "SVMC", + "iata_code": "MAR", + "wikipedia": "http://en.wikipedia.org/wiki/La_Chinita_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.7237688094687, 10.5557594684972] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Jose Maria Cordova", + "abbrev": "MDE", + "location": "terminal", + "gps_code": "SKRG", + "iata_code": "MDE", + "wikipedia": "http://en.wikipedia.org/wiki/Jos%C3%A9_Mar%C3%ADa_C%C3%B3rdova_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.4269557399772, 6.171001614358] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Memphis Int'l", + "abbrev": "MEM", + "location": "terminal", + "gps_code": "KMEM", + "iata_code": "MEM", + "wikipedia": "http://en.wikipedia.org/wiki/Memphis_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.9816280353237, 35.0444101240089] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Augusto Cesar Sandino Int'l", + "abbrev": "MGA", + "location": "terminal", + "gps_code": "MNMG", + "iata_code": "MGA", + "wikipedia": "http://en.wikipedia.org/wiki/Augusto_C._Sandino_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.1712846229543, 12.144635873435] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Mashhad", + "abbrev": "MHD", + "location": "terminal", + "gps_code": "OIMM", + "iata_code": "MHD", + "wikipedia": "http://en.wikipedia.org/wiki/Mashhad_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [59.6421943574029, 36.2275503134984] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Miami Int'l", + "abbrev": "MIA", + "location": "terminal", + "gps_code": "KMIA", + "iata_code": "MIA", + "wikipedia": "http://en.wikipedia.org/wiki/Miami_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.2789718277441, 25.7949407212406] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Lic M Crecencio Rejon Int'l", + "abbrev": "MID", + "location": "terminal", + "gps_code": "MMMD", + "iata_code": "MID", + "wikipedia": "http://en.wikipedia.org/wiki/Manuel_Crescencio_Rej%C3%B3n_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.6630235736434, 20.9338603864296] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Luqa", + "abbrev": "MLA", + "location": "terminal", + "gps_code": "LMML", + "iata_code": "MLA", + "wikipedia": "http://en.wikipedia.org/wiki/Malta_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [14.4952644555055, 35.8489307943501] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Moi Int'l", + "abbrev": "MBA", + "location": "terminal", + "gps_code": "HKMO", + "iata_code": "MBA", + "wikipedia": "http://en.wikipedia.org/wiki/Moi_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.6026631870383, -4.03265262579657] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Moshoeshoe I Int'l", + "abbrev": "MSU", + "location": "terminal", + "gps_code": "FXMM", + "iata_code": "MSU", + "wikipedia": "http://en.wikipedia.org/wiki/Moshoeshoe_I_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [27.5592160333614, -29.4555740046101] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "New Orleans Int'l", + "abbrev": "MSY", + "location": "terminal", + "gps_code": "KMSY", + "iata_code": "MSY", + "wikipedia": "http://en.wikipedia.org/wiki/Louis_Armstrong_New_Orleans_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.2566939480594, 29.9851141460622] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major and military", + "name": "Multan", + "abbrev": "MUX", + "location": "runway", + "gps_code": "OPMT", + "iata_code": "MUX", + "wikipedia": "http://en.wikipedia.org/wiki/Multan_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [71.418995432932, 30.1950780904965] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Carrasco Int'l", + "abbrev": "MVD", + "location": "terminal", + "gps_code": "SUMU", + "iata_code": "MVD", + "wikipedia": "http://en.wikipedia.org/wiki/Carrasco_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.026636146282, -34.8410485988569] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "General Rafael Buelna Int'l", + "abbrev": "MZT", + "location": "terminal", + "gps_code": "MMMZ", + "iata_code": "MZT", + "wikipedia": "http://en.wikipedia.org/wiki/General_Rafael_Buelna_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.270016617885, 23.1665960971345] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Nassau Int'l", + "abbrev": "NAS", + "location": "terminal", + "gps_code": "MYNN", + "iata_code": "NAS", + "wikipedia": "http://en.wikipedia.org/wiki/Lynden_Pindling_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.4648472290944, 25.0486910600866] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Ndjamena", + "abbrev": "NDJ", + "location": "terminal", + "gps_code": "FTTJ", + "iata_code": "NDJ", + "wikipedia": "http://en.wikipedia.org/wiki/N'Djamena_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [15.0330446385559, 12.1295400184115] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Niamey", + "abbrev": "NIM", + "location": "terminal", + "gps_code": "DRRN", + "iata_code": "NIM", + "wikipedia": "http://en.wikipedia.org/wiki/Diori_Hamani_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [2.17730671184125, 13.4767572807942] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Mactan-Cebu Int'l", + "abbrev": "CEB", + "location": "terminal", + "gps_code": "RPVM", + "iata_code": "CEB", + "wikipedia": "http://en.wikipedia.org/wiki/Mactan-Cebu_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [123.979134508664, 10.3158756727292] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Nova Lisboa", + "abbrev": "NOV", + "location": "terminal", + "gps_code": "FNHU", + "iata_code": "NOV", + "wikipedia": "http://en.wikipedia.org/wiki/Nova_Lisboa_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [15.7497618459595, -12.8025414575915] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Eppley Airfield", + "abbrev": "OMA", + "location": "terminal", + "gps_code": "KOMA", + "iata_code": "OMA", + "wikipedia": "http://en.wikipedia.org/wiki/Eppley_Airfield", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.8994157953121, 41.2997111453012] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Nome", + "abbrev": "OME", + "location": "terminal", + "gps_code": "PAOM", + "iata_code": "OME", + "wikipedia": "http://en.wikipedia.org/wiki/Nome_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-165.441641712281, 64.5072207026631] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Ouagadougou", + "abbrev": "OUA", + "location": "terminal", + "gps_code": "DFFD", + "iata_code": "OUA", + "wikipedia": "http://en.wikipedia.org/wiki/Ouagadougou_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.51380536165114, 12.3535800260473] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Mais Gate Int'l", + "abbrev": "PAP", + "location": "terminal", + "gps_code": "MTPP", + "iata_code": "PAP", + "wikipedia": "http://en.wikipedia.org/wiki/Toussaint_Louverture_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.2944780260473, 18.5756829054286] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Puebla", + "abbrev": "PBC", + "location": "terminal", + "gps_code": "MMPB", + "iata_code": "PBC", + "wikipedia": "http://en.wikipedia.org/wiki/Hermanos_Serd%C3%A1n_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-98.375759790423, 19.1637935465841] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Portland Int'l", + "abbrev": "PDX", + "location": "terminal", + "gps_code": "KPDX", + "iata_code": "PDX", + "wikipedia": "http://en.wikipedia.org/wiki/Portland_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.592738881254, 45.5889569315305] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Perth Int'l", + "abbrev": "PER", + "location": "terminal", + "gps_code": "YPPH", + "iata_code": "PER", + "wikipedia": "http://en.wikipedia.org/wiki/Perth_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [115.974224942233, -31.9411297945783] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "H F Verwoerd", + "abbrev": "PLZ", + "location": "terminal", + "gps_code": "FAPE", + "iata_code": "PLZ", + "wikipedia": "http://en.wikipedia.org/wiki/Port_Elizabeth_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [25.6117777567602, -33.9840877431374] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "El Tepual Int'l", + "abbrev": "PMC", + "location": "terminal", + "gps_code": "SCTE", + "iata_code": "PMC", + "wikipedia": "http://en.wikipedia.org/wiki/El_Tepual_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.0983841336424, -41.4333820702269] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Pochentong", + "abbrev": "PNH", + "location": "terminal", + "gps_code": "VDPP", + "iata_code": "PNH", + "wikipedia": "http://en.wikipedia.org/wiki/Phnom_Penh_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [104.845027612457, 11.5526449176513] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major and military", + "name": "Pune", + "abbrev": "PNQ", + "location": "terminal", + "gps_code": "VAPO", + "iata_code": "PNQ", + "wikipedia": "http://en.wikipedia.org/wiki/Pune_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.9089838110017, 18.5791766115328] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Port Moresby Int'l", + "abbrev": "POM", + "location": "terminal", + "gps_code": "AYPY", + "iata_code": "POM", + "wikipedia": "http://en.wikipedia.org/wiki/Jacksons_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [147.211250855977, -9.43865269316142] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Tocumen Int'l", + "abbrev": "PTY", + "location": "terminal", + "gps_code": "MPTO", + "iata_code": "PTY", + "wikipedia": "http://en.wikipedia.org/wiki/Tocumen_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.3871348215438, 9.06687242265839] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Carlos Ibanez de Campo Int'l", + "abbrev": "PUQ", + "location": "terminal", + "gps_code": "SCCI", + "iata_code": "PUQ", + "wikipedia": "http://en.wikipedia.org/wiki/Carlos_Ibanez_Del_Campo_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.8431237851324, -53.0050698255177] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Durham Int'l", + "abbrev": "RDU", + "location": "terminal", + "gps_code": "KRDU", + "iata_code": "RDU", + "wikipedia": "http://en.wikipedia.org/wiki/Raleigh-Durham_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.7913814006751, 35.8752323452255] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Mingaladon", + "abbrev": "RGN", + "location": "terminal", + "gps_code": "VYYY", + "iata_code": "RGN", + "wikipedia": "http://en.wikipedia.org/wiki/Yangon_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [96.1341946114947, 16.9011542818251] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Riga", + "abbrev": "RIX", + "location": "terminal", + "gps_code": "EVRA", + "iata_code": "RIX", + "wikipedia": "http://en.wikipedia.org/wiki/Riga_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [23.9793791116995, 56.9220038786097] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Sanaa Int'l", + "abbrev": "SAH", + "location": "terminal", + "gps_code": "OYSN", + "iata_code": "SAH", + "wikipedia": "http://en.wikipedia.org/wiki/Sana'a_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [44.2246467902561, 15.4739027755737] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Baghdad Int'l", + "abbrev": "SDA", + "location": "terminal", + "gps_code": "ORBI", + "iata_code": "SDA", + "wikipedia": "http://en.wikipedia.org/wiki/Baghdad_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [44.2289125352942, 33.268162986377] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "De Las Americas Int'l", + "abbrev": "SDQ", + "location": "terminal", + "gps_code": "MDSD", + "iata_code": "SDQ", + "wikipedia": "http://en.wikipedia.org/wiki/Las_Am%C3%A9ricas_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.6764726754667, 18.4302196948173] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Tan Son Nhat", + "abbrev": "SGN", + "location": "terminal", + "gps_code": "VVTS", + "iata_code": "SGN", + "wikipedia": "http://en.wikipedia.org/wiki/Tan_Son_Nhat_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [106.664246141375, 10.8163005571879] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Thessaloniki", + "abbrev": "SKG", + "location": "terminal", + "gps_code": "LGTS", + "iata_code": "SKG", + "wikipedia": "http://en.wikipedia.org/wiki/Thessaloniki_International_Airport%2C_%22Macedonia%22", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [22.9764353610613, 40.5238736887775] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Vrazhdebna", + "abbrev": "SOF", + "location": "terminal", + "gps_code": "LBSF", + "iata_code": "SOF", + "wikipedia": "http://en.wikipedia.org/wiki/Sofia_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [23.4024521357708, 42.6891841273195] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Surat", + "abbrev": "STV", + "location": "terminal", + "gps_code": "VASU", + "iata_code": "STV", + "wikipedia": "http://en.wikipedia.org/wiki/Surat_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [72.7424384372589, 21.1204503297172] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Nausori Int'l", + "abbrev": "SUV", + "location": "terminal", + "gps_code": "NFNA", + "iata_code": "SUV", + "wikipedia": "http://en.wikipedia.org/wiki/Nausori_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [178.560048369959, -18.0458996922854] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Shiraz Int'l", + "abbrev": "SYZ", + "location": "terminal", + "gps_code": "OISS", + "iata_code": "SYZ", + "wikipedia": "http://en.wikipedia.org/wiki/Shiraz_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [52.5897712745211, 29.5458013842874] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Gen Francisco J Mina Int'l", + "abbrev": "TAM", + "location": "terminal", + "gps_code": "MMTM", + "iata_code": "TAM", + "wikipedia": "http://en.wikipedia.org/wiki/General_Francisco_Javier_Mina_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.8698137568394, 22.2893319525064] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Toncontin Int'l", + "abbrev": "TGU", + "location": "terminal", + "gps_code": "MHTG", + "iata_code": "TGU", + "wikipedia": "http://en.wikipedia.org/wiki/Toncont%C3%ADn_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.2192116348986, 14.0599852192071] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Mehrabad Int'l", + "abbrev": "THR", + "location": "terminal", + "gps_code": "OIII", + "iata_code": "THR", + "wikipedia": "http://en.wikipedia.org/wiki/Mehrabad_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [51.3208069717572, 35.6913743304946] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Tirane Rinas", + "abbrev": "TIA", + "location": "terminal", + "gps_code": "LATI", + "iata_code": "TIA", + "wikipedia": "http://en.wikipedia.org/wiki/Tirana_International_Airport_N%C3%ABn%C3%AB_Tereza", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [19.7150324049722, 41.4208514680567] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "General Abelardo L Rodriguez Int'l", + "abbrev": "TIJ", + "location": "terminal", + "gps_code": "MMTJ", + "iata_code": "TIJ", + "wikipedia": "http://en.wikipedia.org/wiki/General_Abelardo_L._Rodr%C3%ADguez_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-116.975476095598, 32.5460499135013] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Jose Maria Morelos Y Pavon", + "abbrev": "TLC", + "location": "terminal", + "gps_code": "MMTO", + "iata_code": "TLC", + "wikipedia": "http://en.wikipedia.org/wiki/Lic._Adolfo_L%C3%B3pez_Mateos_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.5706494463542, 19.3386880423032] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Ulemiste", + "abbrev": "TLL", + "location": "terminal", + "gps_code": "EETN", + "iata_code": "TLL", + "wikipedia": "http://en.wikipedia.org/wiki/Tallinn_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [24.798964869983, 59.4165014697451] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Ben Gurion", + "abbrev": "TLV", + "location": "terminal", + "gps_code": "LLBG", + "iata_code": "TLV", + "wikipedia": "http://en.wikipedia.org/wiki/Ben_Gurion_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [34.8708499180995, 32.0007468501844] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Sao Tome Salazar", + "abbrev": "TMS", + "location": "terminal", + "gps_code": "FPST", + "iata_code": "TMS", + "wikipedia": "http://en.wikipedia.org/wiki/S%C3%A3o_Tom%C3%A9_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [6.71282193005667, 0.374744213699427] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Antananarivo Ivato", + "abbrev": "TNR", + "location": "terminal", + "gps_code": "FMMI", + "iata_code": "TNR", + "wikipedia": "http://en.wikipedia.org/wiki/Ivato_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [47.4753540009579, -18.7993348763082] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Tampa Int'l", + "abbrev": "TPA", + "location": "parking", + "gps_code": "KTPA", + "iata_code": "TPA", + "wikipedia": "http://en.wikipedia.org/wiki/Tampa_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.534824252055, 27.9800400852184] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Zim Valencia", + "abbrev": "VLN", + "location": "terminal", + "gps_code": "SVVA", + "iata_code": "VLN", + "wikipedia": "http://en.wikipedia.org/wiki/Arturo_Michelena_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-67.9223617121873, 10.1540056883979] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Gumrak", + "abbrev": "VOG", + "location": "terminal", + "gps_code": "URWW", + "iata_code": "VOG", + "wikipedia": "http://en.wikipedia.org/wiki/Volgograd_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [44.354767968489, 48.7916764657611] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Vientiane", + "abbrev": "VTE", + "location": "terminal", + "gps_code": "VLVT", + "iata_code": "VTE", + "wikipedia": "http://en.wikipedia.org/wiki/Wattay_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [102.568238195728, 17.9754595948321] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Viru Viru Int'l", + "abbrev": "VVI", + "location": "terminal", + "gps_code": "SLVR", + "iata_code": "VVI", + "wikipedia": "http://en.wikipedia.org/wiki/Viru_Viru_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.1403888218213, -17.6479468257839] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Wellington Int'l", + "abbrev": "WLG", + "location": "terminal", + "gps_code": "NZWN", + "iata_code": "WLG", + "wikipedia": "http://en.wikipedia.org/wiki/Wellington_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [174.811665268238, -41.3289891844659] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Prince Rupert", + "abbrev": "YPR", + "location": "terminal", + "gps_code": "CYPR", + "iata_code": "YPR", + "wikipedia": "http://en.wikipedia.org/wiki/Prince_Rupert_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-130.44559, 54.292] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Windsor", + "abbrev": "YQG", + "location": "terminal", + "gps_code": "CYQG", + "iata_code": "YQG", + "wikipedia": "http://en.wikipedia.org/wiki/Windsor_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.9600877389449, 42.2658784727198] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Regina", + "abbrev": "YQR", + "location": "terminal", + "gps_code": "CYQR", + "iata_code": "YQR", + "wikipedia": "http://en.wikipedia.org/wiki/Regina_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.655433975371, 50.4332192867183] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Vancouver Int'l", + "abbrev": "YVR", + "location": "terminal", + "gps_code": "CYVR", + "iata_code": "YVR", + "wikipedia": "http://en.wikipedia.org/wiki/Vancouver_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-123.180867003812, 49.1935590395715] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Winnipeg Int'l", + "abbrev": "YWG", + "location": "terminal", + "gps_code": "CYWG", + "iata_code": "YWG", + "wikipedia": "http://en.wikipedia.org/wiki/Winnipeg_James_Armstrong_Richardson_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.2267694809585, 49.9033302471671] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "John G Diefenbaker Int'l", + "abbrev": "YXE", + "location": "terminal", + "gps_code": "CYXE", + "iata_code": "YXE", + "wikipedia": "http://en.wikipedia.org/wiki/Saskatoon/John_G._Diefenbaker_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-106.690181967554, 52.1701439447381] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Whitehorse Int'l", + "abbrev": "YXY", + "location": "terminal", + "gps_code": "CYXY", + "iata_code": "YXY", + "wikipedia": "http://en.wikipedia.org/wiki/Whitehorse_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-135.076210089402, 60.7141521481397] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Calgary Int'l", + "abbrev": "YYC", + "location": "terminal", + "gps_code": "CYYC", + "iata_code": "YYC", + "wikipedia": "http://en.wikipedia.org/wiki/Calgary_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.010560500236, 51.1308572567549] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Charlottetown", + "abbrev": "YYG", + "location": "terminal", + "gps_code": "CYYG", + "iata_code": "YYG", + "wikipedia": "http://en.wikipedia.org/wiki/Charlottetown_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.1312341333234, 46.2858131367525] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Churchill", + "abbrev": "YYQ", + "location": "terminal", + "gps_code": "CYYQ", + "iata_code": "YYQ", + "wikipedia": "http://en.wikipedia.org/wiki/Churchill_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-94.0813639506318, 58.7497237849788] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "St John's Int'l", + "abbrev": "YYT", + "location": "terminal", + "gps_code": "CYYT", + "iata_code": "YYT", + "wikipedia": "http://en.wikipedia.org/wiki/St._John's_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.7433337428638, 47.6131179007955] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Yellowknife", + "abbrev": "YZF", + "location": "terminal", + "gps_code": "CYZF", + "iata_code": "YZF", + "wikipedia": "http://en.wikipedia.org/wiki/Yellowknife_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-114.437846335049, 62.4707373610202] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Zagreb", + "abbrev": "ZAG", + "location": "terminal", + "gps_code": "LDZA", + "iata_code": "ZAG", + "wikipedia": "http://en.wikipedia.org/wiki/Zagreb_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [16.0615138009014, 45.7333266730984] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Zanzibar", + "abbrev": "ZNZ", + "location": "terminal", + "gps_code": "HTZA", + "iata_code": "ZNZ", + "wikipedia": "http://en.wikipedia.org/wiki/Zanzibar_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [39.2223319841558, -6.21857034620282] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Reykjavik Air Terminal", + "abbrev": "REK", + "location": "terminal", + "gps_code": "BIRK", + "iata_code": "REK", + "wikipedia": "http://en.wikipedia.org/wiki/Reykjav%C3%ADk_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-21.9466344031327, 64.1318728609901] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Arkhangelsk-Talagi", + "abbrev": "ARH", + "location": "terminal", + "gps_code": "ULAA", + "iata_code": "ARH", + "wikipedia": "http://en.wikipedia.org/wiki/Talagi_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [40.7133465694594, 64.5967437730455] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Kazan Int'l", + "abbrev": "KZN", + "location": "terminal", + "gps_code": "UWKD", + "iata_code": "KZN", + "wikipedia": "http://en.wikipedia.org/wiki/Kazan_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [49.2984458036407, 55.6080601429765] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Paris Orly", + "abbrev": "ORY", + "location": "parking", + "gps_code": "LFPO", + "iata_code": "ORY", + "wikipedia": "http://en.wikipedia.org/wiki/Orly_Airport_(Paris)", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [2.36737912783773, 48.7313030458052] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Quebec", + "abbrev": "YQB", + "location": "terminal", + "gps_code": "CYQB", + "iata_code": "YQB", + "wikipedia": "http://en.wikipedia.org/wiki/Qu%C3%A9bec/Jean_Lesage_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.3839280711731, 46.7915684363308] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Montreal-Trudeau", + "abbrev": "YUL", + "location": "terminal", + "gps_code": "CYUL", + "iata_code": "YUL", + "wikipedia": "http://en.wikipedia.org/wiki/Montr%C3%A9al-Pierre_Elliott_Trudeau_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-73.7493162650417, 45.4583512294531] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Narita Int'l", + "abbrev": "NRT", + "location": "terminal", + "gps_code": "RJAA", + "iata_code": "NRT", + "wikipedia": "http://en.wikipedia.org/wiki/Narita_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [140.384401709179, 35.7640560727828] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Chubu Centrair Int'l", + "abbrev": "NGO", + "location": "terminal", + "gps_code": "RJGG", + "iata_code": "NGO", + "wikipedia": "http://en.wikipedia.org/wiki/Ch%C5%ABbu_Centrair_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [136.814771286824, 34.8590296958162] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Okadama", + "abbrev": "OKD", + "location": "terminal", + "gps_code": "RJCO", + "iata_code": "OKD", + "wikipedia": "http://en.wikipedia.org/wiki/Okadama_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [141.382100450075, 43.1106495990979] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Bergen Flesland", + "abbrev": "BGO", + "location": "terminal", + "gps_code": "ENBR", + "iata_code": "BGO", + "wikipedia": "http://en.wikipedia.org/wiki/Bergen_Airport%2C_Flesland", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [5.22725311562336, 60.2890610502966] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Tromso Langnes", + "abbrev": "TOS", + "location": "terminal", + "gps_code": "ENTC", + "iata_code": "TOS", + "wikipedia": "http://en.wikipedia.org/wiki/Troms%C3%B8_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [18.9072624292132, 69.6796790473478] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Val de Caes Int'l", + "abbrev": "BEL", + "location": "terminal", + "gps_code": "SBBE", + "iata_code": "BEL", + "wikipedia": "http://en.wikipedia.org/wiki/Val_de_C%C3%A3es_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.4795602893793, -1.38974628795546] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Campo Grande Int'l", + "abbrev": "CGR", + "location": "terminal", + "gps_code": "SBCG", + "iata_code": "CGR", + "wikipedia": "http://en.wikipedia.org/wiki/Campo_Grande_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.6689498781305, -20.4572717360311] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Afonso Pena Int'l", + "abbrev": "CWB", + "location": "terminal", + "gps_code": "SBCT", + "iata_code": "CWB", + "wikipedia": "http://en.wikipedia.org/wiki/Afonso_Pena_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.1737093663469, -25.5360001430558] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Pinto Martins Int'l", + "abbrev": "FOR", + "location": "terminal", + "gps_code": "SBFZ", + "iata_code": "FOR", + "wikipedia": "http://en.wikipedia.org/wiki/Pinto_Martins_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.5407472498334, -3.77859496233091] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Sao Paulo-Guarulhos Int'l", + "abbrev": "GRU", + "location": "terminal", + "gps_code": "SBGR", + "iata_code": "GRU", + "wikipedia": "http://en.wikipedia.org/wiki/S%C3%A3o_Paulo-Guarulhos_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.481753608842, -23.4261155770421] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Santa Genoveva", + "abbrev": "GYN", + "location": "terminal", + "gps_code": "SBGO", + "iata_code": "GYN", + "wikipedia": "http://en.wikipedia.org/wiki/Santa_Genoveva_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-49.2266464905994, -16.6323665721637] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Salgado Filho Int'l", + "abbrev": "POA", + "location": "terminal", + "gps_code": "SBPA", + "iata_code": "POA", + "wikipedia": "http://en.wikipedia.org/wiki/Salgado_Filho_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.1770409488172, -29.9901930170609] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Gilberto Freyre Int'l", + "abbrev": "REC", + "location": "terminal", + "gps_code": "SBRF", + "iata_code": "REC", + "wikipedia": "http://en.wikipedia.org/wiki/Guararapes_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.9182667174851, -8.13162553076239] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Deputado Luis Eduardo Magalhaes Int'l", + "abbrev": "SSA", + "location": "terminal", + "gps_code": "SBSV", + "iata_code": "SSA", + "wikipedia": "http://en.wikipedia.org/wiki/Deputado_Lu%C3%ADs_Eduardo_Magalh%C3%A3es_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.3347989911732, -12.9143614970326] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "El Plumerillo", + "abbrev": "MDZ", + "location": "terminal", + "gps_code": "SAME", + "iata_code": "MDZ", + "wikipedia": "http://en.wikipedia.org/wiki/Governor_Francisco_Gabrielli_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.7984838394473, -32.8278001692719] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Eduardo Gomes Int'l", + "abbrev": "MAO", + "location": "terminal", + "gps_code": "SBEG", + "iata_code": "MAO", + "wikipedia": "http://en.wikipedia.org/wiki/Eduardo_Gomes_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.0460645898854, -3.0321390062591] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Yaounde Nsimalen Int'l", + "abbrev": "NSI", + "location": "terminal", + "gps_code": "FKYS", + "iata_code": "NSI", + "wikipedia": "http://en.wikipedia.org/wiki/Yaound%C3%A9_Nsimalen_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [11.5479941396807, 3.71484520708126] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Shanghai Pudong Int'l", + "abbrev": "PVG", + "location": "terminal", + "gps_code": "ZSPD", + "iata_code": "PVG", + "wikipedia": "http://en.wikipedia.org/wiki/Shanghai_Pudong_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [121.801518760578, 31.1523090295533] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Marka Int'l", + "abbrev": "ADJ", + "location": "terminal", + "gps_code": "OJAM", + "iata_code": "ADJ", + "wikipedia": "http://en.wikipedia.org/wiki/Marka_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [35.9841052362449, 31.9741994015442] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Male Int'l", + "abbrev": "MLE", + "location": "terminal", + "gps_code": "VRMM", + "iata_code": "MLE", + "wikipedia": "http://en.wikipedia.org/wiki/Mal%C3%A9_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [73.5273902836844, 4.18870090323372] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Gen. Heriberto Jara Int'l", + "abbrev": "VER", + "location": "terminal", + "gps_code": "MMVR", + "iata_code": "VER", + "wikipedia": "http://en.wikipedia.org/wiki/General_Heriberto_Jara_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-96.1835702143695, 19.1424237025017] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Osvaldo Vieira Int'l", + "abbrev": "OXB", + "location": "terminal", + "gps_code": "GGOV", + "iata_code": "OXB", + "wikipedia": "http://en.wikipedia.org/wiki/Osvaldo_Vieira_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-15.651185561666, 11.8889231454855] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Francisco Bangoy Int'l", + "abbrev": "DVO", + "location": "terminal", + "gps_code": "RPMD", + "iata_code": "DVO", + "wikipedia": "http://en.wikipedia.org/wiki/Francisco_Bangoy_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [125.645066609434, 7.13053746163073] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Seychelles Int'l", + "abbrev": "SEZ", + "location": "terminal", + "gps_code": "FSIA", + "iata_code": "SEZ", + "wikipedia": "http://en.wikipedia.org/wiki/Seychelles_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [55.5115519246793, -4.67106914178521] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Leopold Sedar Senghor Int'l", + "abbrev": "DKR", + "location": "terminal", + "gps_code": "GOOY", + "iata_code": "DKR", + "wikipedia": "http://en.wikipedia.org/wiki/Dakar-Yoff-L%C3%A9opold_S%C3%A9dar_Senghor_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.490407907719, 14.7456306146748] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "mid", + "name": "Port Sudan New Int'l", + "abbrev": "PZU", + "location": "terminal", + "gps_code": "HSPN", + "iata_code": "PZU", + "wikipedia": "http://en.wikipedia.org/wiki/Port_Sudan_New_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [37.2387475981025, 19.4341052385231] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 4, + "type": "major", + "name": "Tashkent Int'l", + "abbrev": "TAS", + "location": "terminal", + "gps_code": "UTTT", + "iata_code": "TAS", + "wikipedia": "http://en.wikipedia.org/wiki/Tashkent_International_Airport", + "natlscale": 50, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [69.2666137241129, 41.2622338767383] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Copenhagen", + "abbrev": "CPH", + "location": "terminal", + "gps_code": "EKCH", + "iata_code": "CPH", + "wikipedia": "http://en.wikipedia.org/wiki/Copenhagen_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [12.6493508684508, 55.6285017221528] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "mid", + "name": "Aeroportul National Bucuresti-Baneasa", + "abbrev": "BBU", + "location": "terminal", + "gps_code": "LRBS", + "iata_code": "BBU", + "wikipedia": "http://en.wikipedia.org/wiki/Aurel_Vlaicu_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [26.0857251587764, 44.497041455972] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Ferihegy", + "abbrev": "BUD", + "location": "terminal", + "gps_code": "LHBP", + "iata_code": "BUD", + "wikipedia": "http://en.wikipedia.org/wiki/Budapest_Ferihegy_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [19.2622301677881, 47.433274269248] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Chongqing Jiangbei Int'l", + "abbrev": "CKG", + "location": "terminal", + "gps_code": "ZUCK", + "iata_code": "CKG", + "wikipedia": "http://en.wikipedia.org/wiki/Chongqing_Jiangbei_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [106.638019704811, 29.7240422241688] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Douglas Int'l", + "abbrev": "CLT", + "location": "terminal", + "gps_code": "KCLT", + "iata_code": "CLT", + "wikipedia": "http://en.wikipedia.org/wiki/Charlotte/Douglas_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.9439277342763, 35.2204281685597] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Detroit Metro", + "abbrev": "DTW", + "location": "terminal", + "gps_code": "KDTW", + "iata_code": "DTW", + "wikipedia": "http://en.wikipedia.org/wiki/Detroit_Metropolitan_Wayne_County_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.3478935065615, 42.2257204508004] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Dublin", + "abbrev": "DUB", + "location": "terminal", + "gps_code": "EIDW", + "iata_code": "DUB", + "wikipedia": "http://en.wikipedia.org/wiki/Dublin_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.24388491037139, 53.42700828497] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Fairbanks Int'l", + "abbrev": "FAI", + "location": "terminal", + "gps_code": "PAFA", + "iata_code": "FAI", + "wikipedia": "http://en.wikipedia.org/wiki/Fairbanks_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-147.865721120795, 64.8180981117369] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Hamburg", + "abbrev": "HAM", + "location": "terminal", + "gps_code": "EDDH", + "iata_code": "HAM", + "wikipedia": "http://en.wikipedia.org/wiki/Hamburg_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [10.005647830925, 53.6320011640866] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Kuala Lumpur Int'l", + "abbrev": "KUL", + "location": "terminal", + "gps_code": "WMKK", + "iata_code": "KUL", + "wikipedia": "http://en.wikipedia.org/wiki/Kuala_Lumpur_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [101.713886325743, 2.74751295791811] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Mccarran Int'l", + "abbrev": "LAS", + "location": "terminal", + "gps_code": "KLAS", + "iata_code": "LAS", + "wikipedia": "http://en.wikipedia.org/wiki/McCarran_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-115.151323951283, 36.0849602383367] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Orlando Int'l", + "abbrev": "MCO", + "location": "terminal", + "gps_code": "KMCO", + "iata_code": "MCO", + "wikipedia": "http://en.wikipedia.org/wiki/Orlando_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.3073713307985, 28.4311506791138] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Minneapolis St. Paul Int'l", + "abbrev": "MSP", + "location": "terminal", + "gps_code": "KMSP", + "iata_code": "MSP", + "wikipedia": "http://en.wikipedia.org/wiki/Minneapolis-Saint_Paul_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.2081003718301, 44.8820263631968] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Franz-Josef-Strauss", + "abbrev": "MUC", + "location": "terminal", + "gps_code": "EDDM", + "iata_code": "MUC", + "wikipedia": "http://en.wikipedia.org/wiki/Munich_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [11.7880627192437, 48.3538373961609] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Philadelphia Int'l", + "abbrev": "PHL", + "location": "terminal", + "gps_code": "KPHL", + "iata_code": "PHL", + "wikipedia": "http://en.wikipedia.org/wiki/Philadelphia_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.2429857676998, 39.876087236427] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Sky Harbor Int'l", + "abbrev": "PHX", + "location": "terminal", + "gps_code": "KPHX", + "iata_code": "PHX", + "wikipedia": "http://en.wikipedia.org/wiki/Phoenix_Sky_Harbor_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.01363529773, 33.4358607639498] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Salt Lake City Int'l", + "abbrev": "SLC", + "location": "terminal", + "gps_code": "KSLC", + "iata_code": "SLC", + "wikipedia": "http://en.wikipedia.org/wiki/Salt_Lake_City_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.981984879993, 40.7867290053708] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Lambert St Louis Int'l", + "abbrev": "STL", + "location": "terminal", + "gps_code": "KSTL", + "iata_code": "STL", + "wikipedia": "http://en.wikipedia.org/wiki/Lambert-St._Louis_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.3659545350675, 38.7427163155204] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Okecie Int'l", + "abbrev": "WAW", + "location": "terminal", + "gps_code": "EPWA", + "iata_code": "WAW", + "wikipedia": "http://en.wikipedia.org/wiki/Warsaw_Frederic_Chopin_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [20.9727263383587, 52.171026749259] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Zurich Int'l", + "abbrev": "ZRH", + "location": "terminal", + "gps_code": "LSZH", + "iata_code": "ZRH", + "wikipedia": "http://en.wikipedia.org/wiki/Z%C3%BCrich_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [8.56221279534765, 47.4523895064916] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "mid", + "name": "Gosselies", + "abbrev": "CRL", + "location": "terminal", + "gps_code": "EBCI", + "iata_code": "CRL", + "wikipedia": "http://en.wikipedia.org/wiki/Brussels_South_Charleroi_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [4.4543736298165, 50.4571296549567] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Munich Freight Terminal", + "abbrev": "MUCf", + "location": "freight", + "gps_code": "EDDMf", + "iata_code": "MUCf", + "wikipedia": "http://en.wikipedia.org/wiki/Munich_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [11.7694828593654, 48.3497964078377] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Barcelona", + "abbrev": "BCN", + "location": "terminal", + "gps_code": "LEBL", + "iata_code": "BCN", + "wikipedia": "http://en.wikipedia.org/wiki/Barcelona_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [2.07800334981292, 41.3031552797463] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 3, + "type": "major", + "name": "Ruzyn", + "abbrev": "PRG", + "location": "terminal", + "gps_code": "LKPR", + "iata_code": "PRG", + "wikipedia": "http://en.wikipedia.org/wiki/Ruzyn%C4%9B_International_Airport", + "natlscale": 75, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [14.2674849854076, 50.1076511703671] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Hong Kong Int'l", + "abbrev": "HKG", + "location": "terminal", + "gps_code": "VHHH", + "iata_code": "HKG", + "wikipedia": "http://en.wikipedia.org/wiki/Hong_Kong_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [113.935016387376, 22.3153328280868] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Taoyuan", + "abbrev": "TPE", + "location": "terminal", + "gps_code": "RCTP", + "iata_code": "TPE", + "wikipedia": "http://en.wikipedia.org/wiki/Taiwan_Taoyuan_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [121.231370453323, 25.0767411043346] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Schiphol", + "abbrev": "AMS", + "location": "terminal", + "gps_code": "EHAM", + "iata_code": "AMS", + "wikipedia": "http://en.wikipedia.org/wiki/Amsterdam_Schiphol_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [4.76437693232812, 52.3089323889822] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Singapore Changi", + "abbrev": "SIN", + "location": "terminal", + "gps_code": "WSSS", + "iata_code": "SIN", + "wikipedia": "http://en.wikipedia.org/wiki/Singapore_Changi_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [103.986413880993, 1.35616083528126] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "London Heathrow", + "abbrev": "LHR", + "location": "parking", + "gps_code": "EGLL", + "iata_code": "LHR", + "wikipedia": "http://en.wikipedia.org/wiki/London_Heathrow_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.453156652063309, 51.4709958799938] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Auckland Int'l", + "abbrev": "AKL", + "location": "terminal", + "gps_code": "NZAA", + "iata_code": "AKL", + "wikipedia": "http://en.wikipedia.org/wiki/Auckland_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [174.791719433715, -37.0063551142815] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Anchorage Int'l", + "abbrev": "ANC", + "location": "terminal", + "gps_code": "PALH", + "iata_code": "ANC", + "wikipedia": "http://en.wikipedia.org/wiki/Lake_Hood_Seaplane_Base", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.981725100633, 61.1728936745367] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Hartsfield-Jackson Atlanta Int'l", + "abbrev": "ATL", + "location": "terminal", + "gps_code": "KATL", + "iata_code": "ATL", + "wikipedia": "http://en.wikipedia.org/wiki/Hartsfield-Jackson_Atlanta_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.4253974336047, 33.6405290807352] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Beijing Capital", + "abbrev": "PEK", + "location": "terminal", + "gps_code": "ZBAA", + "iata_code": "PEK", + "wikipedia": "http://en.wikipedia.org/wiki/Beijing_Capital_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [116.588174004661, 40.078766336331] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Eldorado Int'l", + "abbrev": "BOG", + "location": "terminal", + "gps_code": "SKBO", + "iata_code": "BOG", + "wikipedia": "http://en.wikipedia.org/wiki/El_Dorado_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.1433718001028, 4.69883276192097] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Chhatrapati Shivaji Int'l", + "abbrev": "BOM", + "location": "terminal", + "gps_code": "VABB", + "iata_code": "BOM", + "wikipedia": "http://en.wikipedia.org/wiki/Chhatrapati_Shivaji_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [72.8745639500051, 19.0951019488402] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Gen E L Logan Int'l", + "abbrev": "BOS", + "location": "terminal", + "gps_code": "KBOS", + "iata_code": "BOS", + "wikipedia": "http://en.wikipedia.org/wiki/Logan_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.0164066172958, 42.3665658198506] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Baltimore-Washington Int'l Thurgood Marshall", + "abbrev": "BWI", + "location": "terminal", + "gps_code": "KBWI", + "iata_code": "BWI", + "wikipedia": "http://en.wikipedia.org/wiki/Baltimore-Washington_International_Thurgood_Marshall_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.6686428352448, 39.1793943583568] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Cairo Int'l", + "abbrev": "CAI", + "location": "terminal", + "gps_code": "HECA", + "iata_code": "CAI", + "wikipedia": "http://en.wikipedia.org/wiki/Cairo_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [31.3997430067114, 30.1119904385575] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "mid", + "name": "Casablanca-Anfa", + "abbrev": "CAS", + "location": "terminal", + "gps_code": "GMMC", + "iata_code": "CAS", + "wikipedia": "http://en.wikipedia.org/wiki/Casablanca-Anfa_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.66321880771143, 33.5627883851079] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "mid", + "name": "Simon Bolivar Int'l", + "abbrev": "CCS", + "location": "terminal", + "gps_code": "SVMI", + "iata_code": "CCS", + "wikipedia": "http://en.wikipedia.org/wiki/Sim%C3%B3n_Bol%C3%ADvar_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-67.0057488076317, 10.5973549146064] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Cape Town Int'l", + "abbrev": "CPT", + "location": "terminal", + "gps_code": "FACT", + "iata_code": "CPT", + "wikipedia": "http://en.wikipedia.org/wiki/Cape_Town_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [18.5976565083138, -33.9704466120395] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Chengdushuang Liu", + "abbrev": "CTU", + "location": "terminal", + "gps_code": "ZUUU", + "iata_code": "CTU", + "wikipedia": "http://en.wikipedia.org/wiki/Chengdu_Shuangliu_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [103.956136481695, 30.5810712647464] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Indira Gandhi Int'l", + "abbrev": "DEL", + "location": "terminal", + "gps_code": "VIDP", + "iata_code": "DEL", + "wikipedia": "http://en.wikipedia.org/wiki/Indira_Gandhi_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [77.0878362565332, 28.5592039760586] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Denver Int'l", + "abbrev": "DEN", + "location": "terminal", + "gps_code": "KDEN", + "iata_code": "DEN", + "wikipedia": "http://en.wikipedia.org/wiki/Denver_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-104.673797338542, 39.849461388151] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Dallas-Ft. Worth Int'l", + "abbrev": "DFW", + "location": "parking", + "gps_code": "KDFW", + "iata_code": "DFW", + "wikipedia": "http://en.wikipedia.org/wiki/Dallas-Fort_Worth_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-97.0403710741144, 32.9001505594816] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Don Muang Int'l", + "abbrev": "DMK", + "location": "terminal", + "gps_code": "VTBD", + "iata_code": "DMK", + "wikipedia": "http://en.wikipedia.org/wiki/Don_Mueang_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [100.602578626505, 13.9202766010347] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Dubai Int'l", + "abbrev": "DXB", + "location": "terminal", + "gps_code": "OMDB", + "iata_code": "DXB", + "wikipedia": "http://en.wikipedia.org/wiki/Dubai_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [55.3540769172243, 25.2525655938182] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Newark Int'l", + "abbrev": "EWR", + "location": "terminal", + "gps_code": "KEWR", + "iata_code": "EWR", + "wikipedia": "http://en.wikipedia.org/wiki/Newark_Liberty_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.1771472796706, 40.6904798278929] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Ministro Pistarini Int'l", + "abbrev": "EZE", + "location": "terminal", + "gps_code": "SAEZ", + "iata_code": "EZE", + "wikipedia": "http://en.wikipedia.org/wiki/Ministro_Pistarini_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.5412456939382, -34.8136469380323] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Fort Lauderdale Hollywood Int'l", + "abbrev": "FLL", + "location": "terminal", + "gps_code": "KFLL", + "iata_code": "FLL", + "wikipedia": "http://en.wikipedia.org/wiki/Fort_Lauderdale-Hollywood_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.1452588465189, 26.0717095746827] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "George Bush Intercontinental", + "abbrev": "IAH", + "location": "terminal", + "gps_code": "KIAH", + "iata_code": "IAH", + "wikipedia": "http://en.wikipedia.org/wiki/George_Bush_Intercontinental_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-95.3337047912947, 29.9865909034907] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Ataturk Hava Limani", + "abbrev": "IST", + "location": "terminal", + "gps_code": "LTBA", + "iata_code": "IST", + "wikipedia": "http://en.wikipedia.org/wiki/Atat%C3%BCrk_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [28.8195493087893, 40.9778388177797] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "OR Tambo Int'l", + "abbrev": "JNB", + "location": "terminal", + "gps_code": "FAJS", + "iata_code": "JNB", + "wikipedia": "http://en.wikipedia.org/wiki/OR_Tambo_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [28.2319885648741, -26.1320953994887] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "mid", + "name": "Juneau Int'l", + "abbrev": "JNU", + "location": "terminal", + "gps_code": "PAJN", + "iata_code": "JNU", + "wikipedia": "http://en.wikipedia.org/wiki/Juneau_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-134.583573037872, 58.3589441045951] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Los Angeles Int'l", + "abbrev": "LAX", + "location": "terminal", + "gps_code": "KLAX", + "iata_code": "LAX", + "wikipedia": "http://en.wikipedia.org/wiki/Los_Angeles_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.402468548522, 33.9441742543586] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Linate", + "abbrev": "LIN", + "location": "terminal", + "gps_code": "LIML", + "iata_code": "LIN", + "wikipedia": "http://en.wikipedia.org/wiki/Linate_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [9.27996629691061, 45.4603938456252] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Melbourne Int'l", + "abbrev": "MEL", + "location": "terminal", + "gps_code": "YMML", + "iata_code": "MEL", + "wikipedia": "http://en.wikipedia.org/wiki/Melbourne_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [144.848998091131, -37.6699411967893] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Lic Benito Juarez Int'l", + "abbrev": "MEX", + "location": "terminal", + "gps_code": "MMMX", + "iata_code": "MEX", + "wikipedia": "http://en.wikipedia.org/wiki/Mexico_City_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-99.0826079514239, 19.4354695720494] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Ninoy Aquino Int'l", + "abbrev": "MNL", + "location": "terminal", + "gps_code": "RPLL", + "iata_code": "MNL", + "wikipedia": "http://en.wikipedia.org/wiki/Ninoy_Aquino_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [121.004122083437, 14.5068323762967] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Jomo Kenyatta Int'l", + "abbrev": "NBO", + "location": "terminal", + "gps_code": "HKJK", + "iata_code": "NBO", + "wikipedia": "http://en.wikipedia.org/wiki/Jomo_Kenyatta_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [36.9250887490366, -1.33052964350634] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Honolulu Int'l", + "abbrev": "HNL", + "location": "terminal", + "gps_code": "PHNL", + "iata_code": "HNL", + "wikipedia": "http://en.wikipedia.org/wiki/Honolulu_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-157.919783173755, 21.332022315024] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Chicago O'Hare Int'l", + "abbrev": "ORD", + "location": "terminal", + "gps_code": "KORD", + "iata_code": "ORD", + "wikipedia": "http://en.wikipedia.org/wiki/O'Hare_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.90513439065, 41.9765291023803] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "King Khalid Int'l", + "abbrev": "RUH", + "location": "terminal", + "gps_code": "OERK", + "iata_code": "RUH", + "wikipedia": "http://en.wikipedia.org/wiki/King_Khalid_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [46.701829023464, 24.9590317436512] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Arturo Merino Benitez Int'l", + "abbrev": "SCL", + "location": "terminal", + "gps_code": "SCEL", + "iata_code": "SCL", + "wikipedia": "http://en.wikipedia.org/wiki/Comodoro_Arturo_Merino_Ben%C3%ADtez_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.7936860162974, -33.3968336342597] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Tacoma Int'l", + "abbrev": "SEA", + "location": "terminal", + "gps_code": "KSEA", + "iata_code": "SEA", + "wikipedia": "http://en.wikipedia.org/wiki/Seattle-Tacoma_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.302289722924, 47.4435819127259] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "San Francisco Int'l", + "abbrev": "SFO", + "location": "terminal", + "gps_code": "KSFO", + "iata_code": "SFO", + "wikipedia": "http://en.wikipedia.org/wiki/San_Francisco_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-122.383470344449, 37.6170250868054] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Hongqiao", + "abbrev": "SHA", + "location": "terminal", + "gps_code": "ZSSS", + "iata_code": "SHA", + "wikipedia": "http://en.wikipedia.org/wiki/Shanghai_Hongqiao_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [121.341183788567, 31.1872574314078] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Sheremtyevo", + "abbrev": "SVO", + "location": "terminal", + "gps_code": "UUEE", + "iata_code": "SVO", + "wikipedia": "http://en.wikipedia.org/wiki/Sheremetyevo_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [37.4159690348414, 55.966447172512] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Toronto-Pearson Int'l", + "abbrev": "YYZ", + "location": "terminal", + "gps_code": "CYYZ", + "iata_code": "YYZ", + "wikipedia": "http://en.wikipedia.org/wiki/Toronto_Pearson_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.6114193247449, 43.6809595186356] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Kingsford Smith", + "abbrev": "SYD", + "location": "terminal", + "gps_code": "YSSY", + "iata_code": "SYD", + "wikipedia": "http://en.wikipedia.org/wiki/Kingsford_Smith_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [151.166067305601, -33.9365832057717] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Helsinki Vantaa", + "abbrev": "HEL", + "location": "terminal", + "gps_code": "EFHK", + "iata_code": "HEL", + "wikipedia": "http://en.wikipedia.org/wiki/Helsinki-Vantaa_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [24.9682078665914, 60.3187158912982] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Charles de Gaulle Int'l", + "abbrev": "CDG", + "location": "terminal", + "gps_code": "LFPG", + "iata_code": "CDG", + "wikipedia": "http://en.wikipedia.org/wiki/Charles_de_Gaulle_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [2.54186776739457, 49.0144200969386] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Berlin-Tegel Int'l", + "abbrev": "TXL", + "location": "terminal", + "gps_code": "EDDT", + "iata_code": "TXL", + "wikipedia": "http://en.wikipedia.org/wiki/Berlin-Tegel_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [13.2903090925074, 52.5544287044101] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Vienna Schwechat Int'l", + "abbrev": "VIE", + "location": "terminal", + "gps_code": "LOWW", + "iata_code": "VIE", + "wikipedia": "http://en.wikipedia.org/wiki/Vienna_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [16.5607679642129, 48.1197563052538] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Frankfurt Int'l", + "abbrev": "FRA", + "location": "terminal", + "gps_code": "EDDF", + "iata_code": "FRA", + "wikipedia": "http://en.wikipedia.org/wiki/Frankfurt_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [8.57182286907608, 50.0506770895207] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Leonardo da Vinci Int'l", + "abbrev": "FCO", + "location": "terminal", + "gps_code": "LIRF", + "iata_code": "FCO", + "wikipedia": "http://en.wikipedia.org/wiki/Leonardo_da_Vinci_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [12.2501008973638, 41.7950786307394] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Osaka Int'l", + "abbrev": "ITM", + "location": "terminal", + "gps_code": "RJOO", + "iata_code": "ITM", + "wikipedia": "http://en.wikipedia.org/wiki/Osaka_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [135.442475256249, 34.7901980848749] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Gimpo Int'l", + "abbrev": "GMP", + "location": "terminal", + "gps_code": "RKSS", + "iata_code": "GMP", + "wikipedia": "http://en.wikipedia.org/wiki/Gimpo_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [126.802392860276, 37.5573005399508] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Oslo Gardermoen", + "abbrev": "OSL", + "location": "terminal", + "gps_code": "ENGM", + "iata_code": "OSL", + "wikipedia": "http://en.wikipedia.org/wiki/Gardermoen_Air_Station", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [11.0991032762581, 60.1935783171386] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Juscelino Kubitschek Int'l", + "abbrev": "BSB", + "location": "terminal", + "gps_code": "SBBR", + "iata_code": "BSB", + "wikipedia": "http://en.wikipedia.org/wiki/Bras%C3%ADlia_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-47.9207885133625, -15.8699985002824] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Congonhas Int'l", + "abbrev": "CGH", + "location": "terminal", + "gps_code": "SBSP", + "iata_code": "CGH", + "wikipedia": "http://en.wikipedia.org/wiki/Congonhas-S%C3%A3o_Paulo_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.6591155302196, -23.62685882701] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Rio de Janeiro-Antonio Carlos Jobim Int'l", + "abbrev": "GIG", + "location": "terminal", + "gps_code": "SBGL", + "iata_code": "GIG", + "wikipedia": "http://en.wikipedia.org/wiki/Rio_de_Janeiro-Gale%C3%A3o_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.2483813790683, -22.8123437125006] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Madrid Barajas", + "abbrev": "MAD", + "location": "terminal", + "gps_code": "LEMD", + "iata_code": "MAD", + "wikipedia": "http://en.wikipedia.org/wiki/Madrid_Barajas_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.56902665458863, 40.4681282733923] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Luis Munoz Marin", + "abbrev": "SJU", + "location": "terminal", + "gps_code": "TJSJ", + "iata_code": "SJU", + "wikipedia": "http://en.wikipedia.org/wiki/Luis_Mu%C3%B1oz_Mar%C3%ADn_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.0042299757548, 18.4380770734949] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Arlanda", + "abbrev": "ARN", + "location": "terminal", + "gps_code": "ESSA", + "iata_code": "ARN", + "wikipedia": "http://en.wikipedia.org/wiki/Stockholm-Arlanda_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [17.9307299016916, 59.6511203397372] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Soekarno-Hatta Int'l", + "abbrev": "CGK", + "location": "parking", + "gps_code": "WIII", + "iata_code": "CGK", + "wikipedia": "http://en.wikipedia.org/wiki/Soekarno-Hatta_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [106.654296151172, -6.1266029559729] + } + }, + { + "type": "Feature", + "properties": { + "scalerank": 2, + "type": "major", + "name": "Eleftherios Venizelos Int'l", + "abbrev": "ATH", + "location": "terminal", + "gps_code": "LGAV", + "iata_code": "ATH", + "wikipedia": "http://en.wikipedia.org/wiki/Athens_International_Airport", + "natlscale": 150, + "featureclass": "Airport" + }, + "geometry": { + "type": "Point", + "coordinates": [23.9471160554073, 37.9362331299254] + } + } + ] +} \ No newline at end of file diff --git a/samples/deckgl-arclayer/style.css b/samples/deckgl-arclayer/style.css new file mode 100644 index 00000000..20620edf --- /dev/null +++ b/samples/deckgl-arclayer/style.css @@ -0,0 +1,25 @@ +/** + * @license + * Copyright 2026 Google LLC. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0 + */ +/* [START maps_deckgl_arclayer] */ +/* + * Always set the map height explicitly to define the size of the div element + * that contains the map. + */ +#map { + height: 100%; +} + +/* + * Optional: Makes the sample page fill the window. + */ +html, +body { + height: 100%; + margin: 0; + padding: 0; +} + +/* [END maps_deckgl_arclayer] */ diff --git a/samples/deckgl-arclayer/tsconfig.json b/samples/deckgl-arclayer/tsconfig.json new file mode 100644 index 00000000..c4a16ef0 --- /dev/null +++ b/samples/deckgl-arclayer/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "module": "esnext", + "target": "esnext", + "strict": true, + "noImplicitAny": false, + "lib": [ + "es2015", + "esnext", + "es6", + "dom", + "dom.iterable" + ], + "moduleResolution": "Node", + "jsx": "preserve", + "skipLibCheck": true + } +}